diff options
author | Cesar G <prototech91@gmail.com> | 2014-12-02 16:23:40 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-12-02 16:23:40 -0800 |
commit | 589394e80b0f2ca962c7fd12d9f085bdaf650ca8 (patch) | |
tree | e1140e0d936704a4791b52e680c796ed474f2bc1 /phpBB/phpbb | |
parent | 70483d60886ad416c3dd40f29e1128e031322e1e (diff) | |
download | forums-589394e80b0f2ca962c7fd12d9f085bdaf650ca8.tar forums-589394e80b0f2ca962c7fd12d9f085bdaf650ca8.tar.gz forums-589394e80b0f2ca962c7fd12d9f085bdaf650ca8.tar.bz2 forums-589394e80b0f2ca962c7fd12d9f085bdaf650ca8.tar.xz forums-589394e80b0f2ca962c7fd12d9f085bdaf650ca8.zip |
[ticket/13396] Normalize multibyte characters in attachment file names.
PHPBB3-13396
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/request/request.php | 2 |
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); } /** |