mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[feature/attach-dl] Removed sprintf() use
PHPBB3-11042
This commit is contained in:
parent
ef2e7ca791
commit
be27afa1c7
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ else
|
||||||
// None of the attachments had a valid a extension
|
// None of the attachments had a valid a extension
|
||||||
$disallowed = implode(', ', $disallowed);
|
$disallowed = implode(', ', $disallowed);
|
||||||
send_status_line(404, 'Forbidden');
|
send_status_line(404, 'Forbidden');
|
||||||
trigger_error(sprintf($user->lang['EXTENSION_DISABLED_AFTER_POSTING'], $disallowed));
|
trigger_error($user->lang('EXTENSION_DISABLED_AFTER_POSTING', $disallowed));
|
||||||
}
|
}
|
||||||
|
|
||||||
file_gc();
|
file_gc();
|
||||||
|
|
Loading…
Add table
Reference in a new issue