From 8156e86b9158bfd7a112c97681ecce3520428103 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Dani=C3=ABl?= <9696905+DanielvV@users.noreply.github.com> Date: Wed, 27 Sep 2017 12:49:07 +0200 Subject: [PATCH] CRM-21214 - Fix address sharing 2 - small change Jenkins: else must start on a new line --- CRM/Core/BAO/Address.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CRM/Core/BAO/Address.php b/CRM/Core/BAO/Address.php index b7b0775512..2d48a9bc77 100644 --- a/CRM/Core/BAO/Address.php +++ b/CRM/Core/BAO/Address.php @@ -1013,7 +1013,8 @@ SELECT is_primary, $skipFields = array('is_primary', 'location_type_id', 'is_billing', 'contact_id'); if (!CRM_Utils_System::isNull($params['master_id'])) { self::processSharedAddressRelationship($params['master_id'], $params['contact_id']); - } else { + } + else { $skipFields[] = 'master_id'; } foreach ($skipFields as $value) { -- 2.25.1