From fe4324328daf5c06aa73bf0eaa5efcc297351c34 Mon Sep 17 00:00:00 2001 From: Jamie McClelland Date: Wed, 11 Dec 2013 13:32:44 -0500 Subject: [PATCH] CRM-13957 - import - undefined index when mapping fields ---------------------------------------- * CRM-13957: 2nd page of Import script reports undefined index http://issues.civicrm.org/jira/browse/CRM-13957 --- CRM/Contact/Import/Form/MapField.php | 1 + 1 file changed, 1 insertion(+) diff --git a/CRM/Contact/Import/Form/MapField.php b/CRM/Contact/Import/Form/MapField.php index 27c5254e69..195d36649f 100644 --- a/CRM/Contact/Import/Form/MapField.php +++ b/CRM/Contact/Import/Form/MapField.php @@ -344,6 +344,7 @@ class CRM_Contact_Import_Form_MapField extends CRM_Import_Form_MapField { //Modified the Relationship fields if the fields are //present in dedupe rule if ($this->_onDuplicate != CRM_Import_Parser::DUPLICATE_NOCHECK && + CRM_Utils_Array::value($cType, $this->_dedupeFields) && is_array($this->_dedupeFields[$cType]) ) { static $cTypeArray = array(); -- 2.25.1