From: eileen Date: Thu, 7 Jun 2018 06:29:18 +0000 (+1200) Subject: Fix incorrect operator on previous Export fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=71151e842c3cc05e212306fc0de35368239e9c4a;p=civicrm-core.git Fix incorrect operator on previous Export fix --- diff --git a/CRM/Export/BAO/Export.php b/CRM/Export/BAO/Export.php index d9fab44146..b86bbe8bd8 100644 --- a/CRM/Export/BAO/Export.php +++ b/CRM/Export/BAO/Export.php @@ -354,7 +354,7 @@ class CRM_Export_BAO_Export { continue; } - if (array_key_exists($relationshipTypes, $contactRelationshipTypes) && (!empty($value[2]) || empty($value[4]))) { + if (array_key_exists($relationshipTypes, $contactRelationshipTypes) && (!empty($value[2]) || !empty($value[4]))) { $relPhoneTypeId = $relIMProviderId = NULL; if (!empty($value[2])) { $relationField = CRM_Utils_Array::value(2, $value);