From 44937f5a0ccab730b082e3dedc73b39e1ba3ea90 Mon Sep 17 00:00:00 2001 From: JKingsnorth Date: Tue, 29 Mar 2016 15:32:18 +0100 Subject: [PATCH] Revert "Fix for CRM failure" This reverts commit a50d7d84b5970e26261fe3134a10c7f91dcb5e56. --- CRM/Dedupe/Merger.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/CRM/Dedupe/Merger.php b/CRM/Dedupe/Merger.php index 1e33a42f30..06a545efe5 100644 --- a/CRM/Dedupe/Merger.php +++ b/CRM/Dedupe/Merger.php @@ -1486,7 +1486,7 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m // @todo Tidy this up $operation = 0; if ($fieldName != 'website') { - $operation = CRM_Utils_Array::value('operation', $migrationInfo['location_blocks'][$fieldName][$fieldCount]); + $operation = CRM_Utils_Array::value('operation', $migrationInfo['location'][$fieldName][$fieldCount]); } // default operation is overwrite. if (!$operation) { @@ -1540,16 +1540,16 @@ INNER JOIN civicrm_membership membership2 ON membership1.membership_type_id = m // Add/update location and type information from the form, if applicable if ($locationBlocks[$name]['hasLocation']) { - $locTypeId = CRM_Utils_Array::value('locTypeId', $migrationInfo['location_blocks'][$name][$blkCount]); + $locTypeId = CRM_Utils_Array::value('locTypeId', $migrationInfo['location'][$name][$blkCount]); $otherBlockDAO->location_type_id = $locTypeId; } if ($locationBlocks[$name]['hasType']) { - $typeTypeId = CRM_Utils_Array::value('typeTypeId', $migrationInfo['location_blocks'][$name][$blkCount]); + $typeTypeId = CRM_Utils_Array::value('typeTypeId', $migrationInfo['location'][$name][$blkCount]); $otherBlockDAO->{$locationBlocks[$name]['hasType']} = $typeTypeId; } // Get main block ID - $mainBlockId = CRM_Utils_Array::value('mainContactBlockId', $migrationInfo['location_blocks'][$name][$blkCount], 0); + $mainBlockId = CRM_Utils_Array::value('mainContactBlockId', $migrationInfo['location'][$name][$blkCount], 0); // if main contact already has primary & billing, set the flags to 0. if ($primaryDAOId) { -- 2.25.1