summaryrefslogtreecommitdiff
path: root/requirements_graph.php
diff options
context:
space:
mode:
authorlsces <lester@lsces.co.uk>2025-08-29 13:39:01 +0100
committerlsces <lester@lsces.co.uk>2025-08-29 13:39:01 +0100
commit0954a0d71a0a5ec01f27bf7dba603337f06e8981 (patch)
tree684b6379994c70b60f4417eae5341521374c9da7 /requirements_graph.php
parent0c1b1eef6c68e10d14ef34dae6aff79e48bf8a60 (diff)
downloadkernel-0954a0d71a0a5ec01f27bf7dba603337f06e8981.tar.gz
kernel-0954a0d71a0a5ec01f27bf7dba603337f06e8981.tar.bz2
kernel-0954a0d71a0a5ec01f27bf7dba603337f06e8981.zip
General code changes to cover uninitialized variables and style changes for PHP8.4
Diffstat (limited to 'requirements_graph.php')
-rwxr-xr-x[-rw-r--r--]requirements_graph.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/requirements_graph.php b/requirements_graph.php
index 785a8a1..13d743e 100644..100755
--- a/requirements_graph.php
+++ b/requirements_graph.php
@@ -8,10 +8,9 @@
/**
* Setup
*/
-require_once( '../kernel/includes/setup_inc.php' );
+require_once '../kernel/includes/setup_inc.php';
$gBitSystem->verifyPermission( 'p_admin' );
global $gBitInstaller;
$gBitInstaller = &$gBitSystem;
$gBitInstaller->verifyInstalledPackages();
-$gBitInstaller->drawRequirementsGraph( !empty( $_REQUEST['install_version'] ), ( !empty( $_REQUEST['format'] ) ? $_REQUEST['format'] : 'png' ), ( !empty( $_REQUEST['command'] ) ? $_REQUEST['command'] : 'dot' ));
-?>
+$gBitInstaller->drawRequirementsGraph( !empty( $_REQUEST['install_version'] ), !empty( $_REQUEST['format'] ) ? $_REQUEST['format'] : 'png', !empty( $_REQUEST['command'] ) ? $_REQUEST['command'] : 'dot' );