]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Declare global usage in common.php so setup works right when called from phpunit...
authorBrion Vibber <brion@pobox.com>
Wed, 18 Nov 2009 00:24:48 +0000 (16:24 -0800)
committerBrion Vibber <brion@pobox.com>
Wed, 18 Nov 2009 00:31:13 +0000 (16:31 -0800)
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...

lib/common.php

index 063d7d9d99dc97105e16ed3640a0f5e2b4bf77ec..203b37c872cf62a18dc5782bd96f3d061e781eaf 100644 (file)
@@ -83,6 +83,9 @@ function _sn_to_path($sn)
     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
 // can be set by including module, else we guess based
 // on HTTP info.