[feature/attach-dl] Removed sprintf() use

PHPBB3-11042
This commit is contained in:
Fyorl 2012-08-14 13:24:02 +01:00
parent ef2e7ca791
commit be27afa1c7

View file

@ -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();