1
0
mirror of synced 2025-01-29 19:41:45 +03:00

fixed spike phpcoverage, there were some problems with global variables

This commit is contained in:
jepso 2007-10-15 14:52:22 +00:00
parent 0dbea77dcd
commit cfb45de519
2 changed files with 5 additions and 3 deletions

View File

@ -8,11 +8,13 @@
*/
?>
<?php
global $spc_config;
// Set to 'LOG_DEBUG' for maximum log output
// Note that the log file size will grow rapidly
// with LOG_DEBUG
//$spc_config['log_level'] = 'LOG_NOTICE';
$spc_config['log_level'] = 'LOG_DEBUG';
$spc_config['log_level'] = 'LOG_NOTICE';
//$spc_config['log_level'] = 'LOG_DEBUG';
// file extension to be treated as php files
// comma-separated list, no space

View File

@ -219,6 +219,6 @@
/*}}}*/
}
$util = new Utility();
global $util;
$util = new Utility();
?>