I am using an old version of the Codeigniter framework. With the new php version, I get this error: Only variables should be assigned by reference
I am wondering if this is a safe fix: Change:
$this->_base_classes =& is_loaded();
to
$assign = is_loaded(); $this->_base_classes =& $assign;
This is the same?
source share