summaryrefslogtreecommitdiff
path: root/ajax_edit_storage.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2025-08-27 15:15:48 +0100
committerlsces <lester@lsces.co.uk>2025-08-27 15:15:48 +0100
commit407bc340dc419e4448656764ac95e9d90482a867 (patch)
treeec3d499580a631213610c101e88ee0a546e9989a /ajax_edit_storage.php
parent6e4c7248e7e20a203b2047dfba7af9fc068d9c42 (diff)
downloadliberty-407bc340dc419e4448656764ac95e9d90482a867.tar.gz
liberty-407bc340dc419e4448656764ac95e9d90482a867.tar.bz2
liberty-407bc340dc419e4448656764ac95e9d90482a867.zip
Kernel functions changes to cover uninitialized variables and style changes for PHP8.4
Diffstat (limited to 'ajax_edit_storage.php')
-rwxr-xr-x[-rw-r--r--]ajax_edit_storage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/ajax_edit_storage.php b/ajax_edit_storage.php
index 9dec7f3..3bf4eb0 100644..100755
--- a/ajax_edit_storage.php
+++ b/ajax_edit_storage.php
@@ -21,11 +21,11 @@ include_once( LIBERTY_PKG_INCLUDE_PATH.'edit_storage_inc.php' );
// fetch the content of the page to display
$gBitThemes->setFormatHeader( 'center_only' );
-$gBitSmarty->assign( 'uploadTab', TRUE );
+$gBitSmarty->assign( 'uploadTab', true );
if( isset( $_REQUEST['form_id'] ) ){
$gBitSmarty->assign( 'form_id', $_REQUEST['form_id'] );
}
-$gBitSystem->display( 'bitpackage:liberty/edit_storage_list.tpl' , NULL, array( 'display_mode' => 'edit' ));
+$gBitSystem->display( 'bitpackage:liberty/edit_storage_list.tpl' , null, array( 'display_mode' => 'edit' ));
?>