Declare global usage in common.php so setup works right when called from phpunit tests
We end up running the tests through a function in PHPUnit, so we don't have automatic global scope at the top level of files all the time...
This commit is contained in:
parent
2c2861b867
commit
63ebb033bf
@ -83,6 +83,9 @@ function _sn_to_path($sn)
|
|||||||
return $p;
|
return $p;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Save our sanity when code gets loaded through subroutines such as PHPUnit tests
|
||||||
|
global $default, $config, $_server, $_path;
|
||||||
|
|
||||||
// try to figure out where we are. $server and $path
|
// try to figure out where we are. $server and $path
|
||||||
// can be set by including module, else we guess based
|
// can be set by including module, else we guess based
|
||||||
// on HTTP info.
|
// on HTTP info.
|
||||||
|
Loading…
Reference in New Issue
Block a user