diff options
| author | Lester Caine <lester@lsces.co.uk> | 2026-05-22 15:37:42 +0100 |
|---|---|---|
| committer | Lester Caine <lester@lsces.co.uk> | 2026-05-22 15:37:42 +0100 |
| commit | 6f15bf8dd60491d72f04750433ea8581f54270ab (patch) | |
| tree | ef336e1c1204ddd62d150f39b01351079dc5ef6f /edit_notes.php | |
| parent | d4521ac7b20ae0edb9e6b823f481b70e7796425d (diff) | |
| download | contact-6f15bf8dd60491d72f04750433ea8581f54270ab.tar.gz contact-6f15bf8dd60491d72f04750433ea8581f54270ab.tar.bz2 contact-6f15bf8dd60491d72f04750433ea8581f54270ab.zip | |
Remove xref methods now in LibertyContent; update callers
Nine methods deleted from Contact (getContactGroupList, getContactSourceList,
getXrefTypeList, getXrefFormatList, loadContentTypeList, loadXrefList,
loadXref, storeXref, stepXref) — all now inherited from LibertyContent.
Contact sets $mXrefTypeKey = 'contact_types' so loadXrefTypeList() continues
to store under the key templates expect. load() updated to call
loadXrefTypeList(). Page files updated: getContactGroupList → getXrefGroupList,
getContactSourceList → getXrefSourceList.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'edit_notes.php')
| -rwxr-xr-x | edit_notes.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/edit_notes.php b/edit_notes.php index 8b2e0e4..b449a5a 100755 --- a/edit_notes.php +++ b/edit_notes.php @@ -69,7 +69,7 @@ if( empty( $formInfo ) ) { $formInfo = &$gContent->mInfo; } -$formInfo['contact_type_list'] = $gContent->getContactSourceList(); +$formInfo['contact_type_list'] = $gContent->getXrefSourceList(); $gBitSmarty->assign( 'pageInfo', $formInfo ); $gBitSmarty->assign( 'errors', $gContent->mErrors ); |
