aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/download
diff options
context:
space:
mode:
authorFyorl <gaelreth@gmail.com>2012-08-14 13:26:03 +0100
committerFyorl <gaelreth@gmail.com>2012-08-14 13:26:03 +0100
commit2bcff6982afc1dac1b7a590c4de04d69e4cf187c (patch)
treeebb73626a43f532df4ca07de9f9da4cdd8be62ae /phpBB/download
parentc4b28a393624e99c82834e1b793b66f129f098de (diff)
downloadforums-2bcff6982afc1dac1b7a590c4de04d69e4cf187c.tar
forums-2bcff6982afc1dac1b7a590c4de04d69e4cf187c.tar.gz
forums-2bcff6982afc1dac1b7a590c4de04d69e4cf187c.tar.bz2
forums-2bcff6982afc1dac1b7a590c4de04d69e4cf187c.tar.xz
forums-2bcff6982afc1dac1b7a590c4de04d69e4cf187c.zip
[feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma
PHPBB3-11042
Diffstat (limited to 'phpBB/download')
-rw-r--r--phpBB/download/file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php
index e21aec5ee7..d33e1723ca 100644
--- a/phpBB/download/file.php
+++ b/phpBB/download/file.php
@@ -402,7 +402,7 @@ else
if ($files_added < 1)
{
// None of the attachments had a valid a extension
- $disallowed = implode(', ', $disallowed);
+ $disallowed = implode($user->lang['COMMA_SEPARATOR'], $disallowed);
send_status_line(404, 'Forbidden');
trigger_error($user->lang('EXTENSION_DISABLED_AFTER_POSTING', $disallowed));
}