mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 12:03:21 +01:00
[feature/attach-dl] Used COMMA_SEPARATOR instead of actual comma
PHPBB3-11042
This commit is contained in:
parent
c4b28a3936
commit
2bcff6982a
@ -402,7 +402,7 @@ else
|
|||||||
if ($files_added < 1)
|
if ($files_added < 1)
|
||||||
{
|
{
|
||||||
// None of the attachments had a valid a extension
|
// None of the attachments had a valid a extension
|
||||||
$disallowed = implode(', ', $disallowed);
|
$disallowed = implode($user->lang['COMMA_SEPARATOR'], $disallowed);
|
||||||
send_status_line(404, 'Forbidden');
|
send_status_line(404, 'Forbidden');
|
||||||
trigger_error($user->lang('EXTENSION_DISABLED_AFTER_POSTING', $disallowed));
|
trigger_error($user->lang('EXTENSION_DISABLED_AFTER_POSTING', $disallowed));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user