aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-12-06 14:22:49 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-12-06 14:22:49 +0100
commit641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9 (patch)
treeb41ed7af6b1db44a86c0deab4bed4b90ce21d20a /phpBB/phpbb
parent7fbf5649eb02a0341e1eed0247e105f21fcdddf4 (diff)
parent589394e80b0f2ca962c7fd12d9f085bdaf650ca8 (diff)
downloadforums-641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9.tar
forums-641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9.tar.gz
forums-641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9.tar.bz2
forums-641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9.tar.xz
forums-641a9e5441dfe749187ba8b5cd3fa0c2b49a09f9.zip
Merge pull request #3208 from prototech/ticket/13396
[ticket/13396] Normalize multibyte characters in attachment file names.
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);
}
/**