summaryrefslogtreecommitdiff
path: root/edit_xref_type.php
diff options
context:
space:
mode:
authorLester Caine <lester@lsces.co.uk>2026-05-14 09:51:41 +0100
committerLester Caine <lester@lsces.co.uk>2026-05-14 09:51:41 +0100
commit72119ef864e1a5ffa377a504dc2ef430d7e6cd4a (patch)
tree24a4b9539cf4f4b8116bd38d3444001843cb8e45 /edit_xref_type.php
parent72312119fe678d14b61e3c508db98a6dd0ee4ec0 (diff)
downloadcontact-72119ef864e1a5ffa377a504dc2ef430d7e6cd4a.tar.gz
contact-72119ef864e1a5ffa377a504dc2ef430d7e6cd4a.tar.bz2
contact-72119ef864e1a5ffa377a504dc2ef430d7e6cd4a.zip
php-cs-fixer tidies to php8.5 standards
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'edit_xref_type.php')
-rwxr-xr-xedit_xref_type.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/edit_xref_type.php b/edit_xref_type.php
index 370e9dc..4a290d7 100755
--- a/edit_xref_type.php
+++ b/edit_xref_type.php
@@ -20,11 +20,11 @@ $gContent = new Contact();
$gBitSmarty->assign( 'xref_type_info', $gContent->mInfo);
if( isset( $_REQUEST["fSubmitSaveXrefType"] ) ) {
- $gContent->storeXrefType( $_REQUEST );
+ $gContent->storeXrefType( $_REQUEST );
$gContent->loadXrefType();
- header( "Location: " . CONTACT_PKG_URL . "admin/admin_xref_type.php" );
+ header( "Location: " . CONTACT_PKG_URL . "admin/admin_xref_type.php" );
} elseif( isset( $_REQUEST['fRemoveXref'] ) ) {
$gContent->expungeXrefType();
}
-$gBitSystem->display( 'bitpackage:contact/edit_xref_type.tpl' , NULL, array( 'display_mode' => 'edit' ));
+$gBitSystem->display( 'bitpackage:contact/edit_xref_type.tpl' , NULL, [ 'display_mode' => 'edit' ]);