From: colemanw Date: Wed, 20 Dec 2023 19:14:10 +0000 (-0500) Subject: ContactSummary - Exclude deleted contacts from relationship tab X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=7f0defebdbf296ce7b7941c816db8833c514b589;p=civicrm-core.git ContactSummary - Exclude deleted contacts from relationship tab --- 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' => [],