aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/fileupload_remote_test.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-08-27 12:48:06 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-09-09 08:29:06 +0200
commitb29b62debe4077ec688ebee9e9363db2c8614dd5 (patch)
treeca58b0928b1dccf8d40dcd8c533f8830d9f4d855 /tests/functional/fileupload_remote_test.php
parent16f3b8c2b9de388223cbe8ace9e1d9bcf0ba5e11 (diff)
downloadforums-b29b62debe4077ec688ebee9e9363db2c8614dd5.tar
forums-b29b62debe4077ec688ebee9e9363db2c8614dd5.tar.gz
forums-b29b62debe4077ec688ebee9e9363db2c8614dd5.tar.bz2
forums-b29b62debe4077ec688ebee9e9363db2c8614dd5.tar.xz
forums-b29b62debe4077ec688ebee9e9363db2c8614dd5.zip
[ticket/13904] Use ini_get() wrapper in file upload types
PHPBB3-13904
Diffstat (limited to 'tests/functional/fileupload_remote_test.php')
-rw-r--r--tests/functional/fileupload_remote_test.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/fileupload_remote_test.php b/tests/functional/fileupload_remote_test.php
index 6752ff01f4..29701e072a 100644
--- a/tests/functional/fileupload_remote_test.php
+++ b/tests/functional/fileupload_remote_test.php
@@ -60,7 +60,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->php_ini, $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, $phpbb_root_path));
+ $container->set('files.types.remote', new \phpbb\files\types\remote($this->factory, $this->language, $this->php_ini, $this->request, $phpbb_root_path));
$this->phpbb_root_path = $phpbb_root_path;
}