From 2bcff6982afc1dac1b7a590c4de04d69e4cf187c Mon Sep 17 00:00:00 2001 From: Fyorl Date: Tue, 14 Aug 2012 13:26:03 +0100 Subject: [PATCH] [feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma PHPBB3-11042 --- phpBB/download/file.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)); }