Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Won't Fix
-
Affects Version/s: 4.2.0
-
Fix Version/s: None
-
Component/s: Core CiviCRM
-
Labels:None
Description
The code that autoloads classes includes an if/then statement that checks to see if the xautoload module is installed, however, it will never be used because the statement reads:
if (FALSE && module_exists('xautoload')) {
This seems like debugging cruft - should it be changed to:
if (module_exists('xautoload')) {
It seems this is the case because CiviCRM autoload functionality doesn't work using xautoload.