Skip to content

Commit

Permalink
Merge pull request #12278 from eileenmcnaughton/5.3
Browse files Browse the repository at this point in the history
Fix incorrect operator on previous Export fix
  • Loading branch information
eileenmcnaughton authored Jun 7, 2018
2 parents f9c0cfa + 71151e8 commit 5100ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRM/Export/BAO/Export.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 5100ef2

Please sign in to comment.