I get a PHP strict error on core/Loader.php line 150 in stable release:
$this->_base_classes =& is_loaded();
ErrorException [ Strict ]: Only variables should be assigned by reference.
I don't see this addressed in the development version, is anyone else having this problem?
What happens if you change the function signature to this:
function &is_loaded()
Get's rid of the error
Needs to be done in Common.php not the method in Loader.php
Wow!!! Thanks @narfbg +1:
Is this something they will fix???
Most helpful comment
What happens if you change the function signature to this: