diff options
-rwxr-xr-x | run-tests.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/run-tests.php b/run-tests.php index 1f31e75788..464c76946b 100755 --- a/run-tests.php +++ b/run-tests.php @@ -105,7 +105,7 @@ PHP_SAPI : " . PHP_SAPI . " PHP_VERSION : " . phpversion() . " PHP_OS : " . PHP_OS . " INI actual : " . realpath(get_cfg_var("cfg_file_path")) . " -More .INIs : " . str_replace("\n","", php_ini_scanned_files()); ?>'; +More .INIs : " . (function_exists(\'php_ini_scanned_files\') ? str_replace("\n","", php_ini_scanned_files()) : "** not determined **"); ?>'; save_text($info_file, $php_info); $settings = array( 'open_basedir=', |