Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Major
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.0.4
-
Fix Version/s: 4.1.0
-
Component/s: None
-
Labels:None
Description
CiviCRM quite frequently uses the following paradigm:
$foo =& ClassName::functionName();
Unless CiviCRM is striving for compatibility with PHP 4, the ampersand should be dropped:
$foo = ClassName::functionName();