diff options
author | Marc Alexander <admin@m-a-styles.de> | 2015-07-15 23:10:23 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2015-09-09 08:28:04 +0200 |
commit | a09c6d1fb760151b1a6c654b597b4578c3136be1 (patch) | |
tree | e0952fa5beee9825d9173485f977ce32d4d4d7d5 /tests/functional | |
parent | 0a6f54d522f7799819969fcd588a354b7beb3fa9 (diff) | |
download | forums-a09c6d1fb760151b1a6c654b597b4578c3136be1.tar forums-a09c6d1fb760151b1a6c654b597b4578c3136be1.tar.gz forums-a09c6d1fb760151b1a6c654b597b4578c3136be1.tar.bz2 forums-a09c6d1fb760151b1a6c654b597b4578c3136be1.tar.xz forums-a09c6d1fb760151b1a6c654b597b4578c3136be1.zip |
[ticket/13904] Split code up and pass root path to remote upload type
PHPBB3-13904
Diffstat (limited to 'tests/functional')
-rw-r--r-- | tests/functional/fileupload_remote_test.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fileupload_remote_test.php b/tests/functional/fileupload_remote_test.php index 1bb63719c6..a754d8c91d 100644 --- a/tests/functional/fileupload_remote_test.php +++ b/tests/functional/fileupload_remote_test.php @@ -56,7 +56,7 @@ class phpbb_functional_fileupload_remote_test extends phpbb_functional_test_case $container->set('files.filespec', new \phpbb\files\filespec($this->filesystem, $this->language, $this->phpbb_root_path)); $this->factory = new \phpbb\files\factory($container); $container->set('files.factory', $this->factory); - $container->set('files.types.remote', new \phpbb\files\types\remote($this->factory, $this->language, $this->request)); + $container->set('files.types.remote', new \phpbb\files\types\remote($this->factory, $this->language, $this->request, $phpbb_root_path)); $this->phpbb_root_path = $phpbb_root_path; } |