1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/11832] Use $phpbb_filesystem instead of the container in append_sid

PHPBB3-11832
This commit is contained in:
Nathan Guse
2013-09-10 10:13:26 -05:00
parent d5f93f5ce4
commit 3684d8e971
2 changed files with 9 additions and 5 deletions

View File

@@ -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);
}
/**