From 3c4a7dec9e5c59c209518798f60f9ce6071238aa Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dani=C3=ABl?= <9696905+DanielvV@users.noreply.github.com> Date: Mon, 25 Sep 2017 16:00:18 +0200 Subject: [PATCH] CRM-21214 - Fix address sharing 1 - small change --- CRM/Contact/BAO/Contact/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Contact/BAO/Contact/Utils.php b/CRM/Contact/BAO/Contact/Utils.php index 2e070cd1b4..738d7f6371 100644 --- a/CRM/Contact/BAO/Contact/Utils.php +++ b/CRM/Contact/BAO/Contact/Utils.php @@ -832,7 +832,7 @@ INNER JOIN civicrm_contact contact_target ON ( contact_target.id = act.contact_i $masterAddress->id = CRM_Utils_Array::value('master_id', $values); $masterAddress->find(TRUE); - //if address master address is shared, use its master (prevent chaining) + //if address master address is shared, use its master (prevent chaining) CRM-21214 if ($masterAddress->master_id > 0) { $values['master_id'] = $masterAddress->master_id; $masterAddress = new CRM_Core_BAO_Address(); -- 2.25.1