Friday 26 June 2015

Only variable references should be returned by reference - Codeigniter

Edit filename: core/Common.php, line number: 257

Before

return $_config[0] =& $config; 
 
After
 
$_config[0] =& $config;return $_config[0];  

No comments:

Post a Comment