CRM-19559 - CRM_Contact_BAO_Contact_Utils - Fix handling of postal_code in contactDet...
authorThomas Schüttler <tschuettler@oxfam.de>
Mon, 24 Oct 2016 12:36:52 +0000 (14:36 +0200)
committerThomas Schüttler <tschuettler@oxfam.de>
Mon, 24 Oct 2016 12:36:52 +0000 (14:36 +0200)
CRM/Contact/BAO/Contact/Utils.php

index 3339de232ab4911b7407f55e75cbcbd83347eb7e..030b72635ad0cbd04aa0169fe27c7fd67dfd9e47 100644 (file)
@@ -717,6 +717,7 @@ LEFT JOIN  civicrm_email ce ON ( ce.contact_id=c.id AND ce.is_primary = 1 )
       $value = (in_array($property, array(
         'city',
         'street_address',
+        'postal_code',
       ))) ? 'address' : $property;
       switch ($property) {
         case 'sort_name':
@@ -745,6 +746,7 @@ INNER JOIN civicrm_contact contact_target ON ( contact_target.id = act.contact_i
         case 'phone':
         case 'city':
         case 'street_address':
+        case 'postal_code':
           $select[] = "$property as $property";
           // Grab target contact properties if this is for activity
           if ($componentName == 'Activity') {