Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Trivial
-
Resolution: Fixed/Completed
-
Affects Version/s: 4.5.5
-
Fix Version/s: 4.6.4
-
Component/s: Core CiviCRM
-
Labels:
-
Documentation Required?:None
Description
hook.php has a missing & in the function alterDisplayName
Is:
public static function alterDisplayName($displayName, $contactId, $dao) {
Should be:
public static function alterDisplayName(&$displayName, $contactId, $dao) {
As soon as I figure out how to do a PR I will.