aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-06 14:22:58 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-12-06 14:22:58 +0100
commit8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be (patch)
treeb7aca4aaa90b3f184e4b13dcbec8b5bd85719da0 /phpBB/phpbb
parentf0c6c4db15d49a2a44845056ce9e5e7ce1cc54d6 (diff)
parent641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9 (diff)
downloadforums-8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be.tar
forums-8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be.tar.gz
forums-8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be.tar.bz2
forums-8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be.tar.xz
forums-8a357181492ef7c41ed6289ef1c5e8e0e4bdd6be.zip
Merge branch 'develop-ascraeus' into develop
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/request/request.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/request/request.php b/phpBB/phpbb/request/request.php
index f0f2f7e2a2..56ce3999ed 100644
--- a/phpBB/phpbb/request/request.php
+++ b/phpBB/phpbb/request/request.php
@@ -275,7 +275,7 @@ class request implements \phpbb\request\request_interface
*/
public function file($form_name)
{
- return $this->variable($form_name, array('name' => 'none'), false, \phpbb\request\request_interface::FILES);
+ return $this->variable($form_name, array('name' => 'none'), true, \phpbb\request\request_interface::FILES);
}
/**