I use old version of Codeigniter framework. With new version of php I am gettings this error:
Only variables should be assigned by reference
I am wondering if this is safe bugfix: Changing:
$this->_base_classes =& is_loaded();
to
$assign = is_loaded();
$this->_base_classes =& $assign;
Is that the same?