Codeigniter: Only variable references should be returned by reference

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

Before

return $_config[0] =& $config;

After

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

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.