In this file (/system/core/Common.php) at line 257 we have:
return $_config[0] =& $config;
This gives me a php notice about references. When I change this line to:
$_config[0] =& $config;
return $_config[0];
… the problem is solved.
In this file (/system/core/Common.php) at line 257 we have:
return $_config[0] =& $config;
This gives me a php notice about references. When I change this line to:
$_config[0] =& $config;
return $_config[0];
… the problem is solved.
/system/core/Common.php
is a base file of Codeigniter and will be maintained by the Codeigniter developers.