mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/16832] Fix UCP attachments plural rules
PHPBB3-16832
This commit is contained in:
parent
90fccff6f1
commit
364c6d328a
1 changed files with 1 additions and 1 deletions
|
@ -194,7 +194,7 @@ class ucp_attachments
|
|||
|
||||
$template->assign_vars(array(
|
||||
'TOTAL_ATTACHMENTS' => $num_attachments,
|
||||
'NUM_ATTACHMENTS' => $user->lang('NUM_ATTACHMENTS', $num_attachments),
|
||||
'NUM_ATTACHMENTS' => $user->lang('NUM_ATTACHMENTS', (int) $num_attachments),
|
||||
|
||||
'L_TITLE' => $user->lang['UCP_ATTACHMENTS'],
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue