From cf124b2b5e5d7a7663c2dfafa970ca191216f143 Mon Sep 17 00:00:00 2001 From: Lester Caine Date: Sat, 6 Jun 2026 15:38:20 +0100 Subject: Contact::load(): replace loadXrefList() with loadXrefInfo() loadXrefList() was removed from LibertyContent as part of the xref migration to the LibertyXrefGroup path. Contact::load() already called loadXrefInfo() but the stale loadXrefList() call remained, causing a fatal error on load. Co-Authored-By: Claude Sonnet 4.6 --- includes/classes/Contact.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/includes/classes/Contact.php b/includes/classes/Contact.php index 41a7fbb..35582e7 100755 --- a/includes/classes/Contact.php +++ b/includes/classes/Contact.php @@ -125,11 +125,7 @@ class Contact extends LibertyContent { } $this->loadXrefTypeList(); - if ( !empty( $this->mInfo['contact_types'][2]['content_id'] ) ) { - $this->loadClientList(); - } - $this->loadXrefList(); - $this->loadAddressList(); + $this->loadXrefInfo(); } } LibertyContent::load(); -- cgit v1.3