PHP error fatal error call-time pass-by-reference has been removed in On line ***
Look for a line ** in some file where you have a function call similar to this
$a = fucnction (&$b); // the ampersand here needs to be removed
or the creation of a new object like
$a = &new Object(); // the ampersand here needs to be removed
Comments