From 7f0defebdbf296ce7b7941c816db8833c514b589 Mon Sep 17 00:00:00 2001 From: colemanw Date: Wed, 20 Dec 2023 14:14:10 -0500 Subject: [PATCH] ContactSummary - Exclude deleted contacts from relationship tab --- .../SavedSearch_Contact_Summary_Relationships.mgd.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/managed/contactSummary/SavedSearch_Contact_Summary_Relationships.mgd.php b/managed/contactSummary/SavedSearch_Contact_Summary_Relationships.mgd.php index c2739138b7..789b3eefe4 100644 --- a/managed/contactSummary/SavedSearch_Contact_Summary_Relationships.mgd.php +++ b/managed/contactSummary/SavedSearch_Contact_Summary_Relationships.mgd.php @@ -45,7 +45,9 @@ return [ 'is_active', ], 'orderBy' => [], - 'where' => [], + 'where' => [ + ['RelationshipCache_Contact_far_contact_id_01.is_deleted', '=', FALSE], + ], 'groupBy' => [], 'join' => $joins, 'having' => [], -- 2.25.1