diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-10 10:13:26 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-09-10 10:13:26 -0500 |
commit | 3684d8e9711516264fedac0519262891d9894ea1 (patch) | |
tree | 3e905034cb2f4e2628b0cc4f5fd524fe8827415e /tests | |
parent | d5f93f5ce4c25b4bd0aff9473eb47eeeb1afccd4 (diff) | |
download | forums-3684d8e9711516264fedac0519262891d9894ea1.tar forums-3684d8e9711516264fedac0519262891d9894ea1.tar.gz forums-3684d8e9711516264fedac0519262891d9894ea1.tar.bz2 forums-3684d8e9711516264fedac0519262891d9894ea1.tar.xz forums-3684d8e9711516264fedac0519262891d9894ea1.zip |
[ticket/11832] Use $phpbb_filesystem instead of the container in append_sid
PHPBB3-11832
Diffstat (limited to 'tests')
-rw-r--r-- | tests/filesystem/web_root_path_test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/filesystem/web_root_path_test.php b/tests/filesystem/web_root_path_test.php index 7b44ac8c67..3c530619dc 100644 --- a/tests/filesystem/web_root_path_test.php +++ b/tests/filesystem/web_root_path_test.php @@ -18,7 +18,9 @@ class phpbb_filesystem_web_root_path_test extends phpbb_test_case $this->set_phpbb_root_path(); - $this->filesystem = new phpbb_filesystem($this->phpbb_root_path); + global $phpbb_filesystem; + + $phpbb_filesystem = $this->filesystem = new phpbb_filesystem($this->phpbb_root_path); } /** |