Skip to content
Snippets Groups Projects
Commit 69edd19f authored by eileen's avatar eileen
Browse files

#1780 Fix bug where non-household merge contacts were being skipped

parent eaba3c3e
Branches
Tags
No related merge requests found
......@@ -498,7 +498,7 @@ class CRM_Export_BAO_ExportProcessor {
*/
public function setRelationshipValue($relationshipType, $contactID, $field, $value) {
$this->relatedContactValues[$relationshipType][$contactID][$field] = $value;
if ($field === 'id') {
if ($field === 'id' && $this->isHouseholdMergeRelationshipTypeKey($relationshipType)) {
$this->householdsToSkip[] = $value;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment