From: Eileen McNaughton Date: Tue, 17 May 2022 23:42:38 +0000 (+1200) Subject: Remove always-true-if X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=9459caf4f02eba56547e3c52cca3029c3c6e6e78;p=civicrm-core.git Remove always-true-if --- diff --git a/CRM/Contact/Import/Parser/Contact.php b/CRM/Contact/Import/Parser/Contact.php index fb11bdabe5..6f1f5a0cef 100644 --- a/CRM/Contact/Import/Parser/Contact.php +++ b/CRM/Contact/Import/Parser/Contact.php @@ -2352,9 +2352,7 @@ class CRM_Contact_Import_Parser_Contact extends CRM_Import_Parser { } if (!isset($params[$fieldName])) { - if (!isset($relatedContactKey)) { - $params[$fieldName] = $importedValue; - } + $params[$fieldName] = $importedValue; } }