From 71151e842c3cc05e212306fc0de35368239e9c4a Mon Sep 17 00:00:00 2001 From: eileen Date: Thu, 7 Jun 2018 18:29:18 +1200 Subject: [PATCH] Fix incorrect operator on previous Export fix --- CRM/Export/BAO/Export.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CRM/Export/BAO/Export.php b/CRM/Export/BAO/Export.php index d9fab44146a1..b86bbe8bd83d 100644 --- a/CRM/Export/BAO/Export.php +++ b/CRM/Export/BAO/Export.php @@ -354,7 +354,7 @@ public static function exportComponents( 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);