CodeIgniter Message: Only variable references should be returned by reference

·

If you happened encountered that PHP Error on your CodeIgniter application (eg fuelcms), then try this fix by milan.petrak in EllisLab’s forum :

return $_config[0] =& $config;

change into :

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

Comments

8 responses to “CodeIgniter Message: Only variable references should be returned by reference”

    1. dewa Avatar

      Hai,
      in FuelCMS, the file is “fuel/codeigniter/core/Common.php”, find at line 257
      in CodeIgniter 2.2.1, the file is “system/core/Common.php” but there’s no need to edit.

Leave a Reply

Your email address will not be published. Required fields are marked *