From 759a1a09fae5147afe346729764f050ecc67076b Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Wed, 15 Jul 2015 21:30:42 +0200 Subject: [PATCH] [ticket/13904] Fix remote upload functional tests PHPBB3-13904 --- phpBB/phpbb/files/types/remote.php | 2 +- tests/functional/fileupload_remote_test.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/phpbb/files/types/remote.php b/phpBB/phpbb/files/types/remote.php index c70f1557e7..04263f9cba 100644 --- a/phpBB/phpbb/files/types/remote.php +++ b/phpBB/phpbb/files/types/remote.php @@ -234,7 +234,7 @@ class remote extends base /** @var filespec $file */ $file = $this->factory->get('filespec') ->set_upload_ary($upload_ary) - ->set_upload_namespace($this); + ->set_upload_namespace($this->upload); $this->upload->common_checks($file); return $file; diff --git a/tests/functional/fileupload_remote_test.php b/tests/functional/fileupload_remote_test.php index 0f1e4d6e59..1bb63719c6 100644 --- a/tests/functional/fileupload_remote_test.php +++ b/tests/functional/fileupload_remote_test.php @@ -56,6 +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)); $this->phpbb_root_path = $phpbb_root_path; }