mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
[ticket/10990] Changes for develop
PHPBB3-10990
This commit is contained in:
parent
eb5e33a768
commit
577dbf8951
7 changed files with 29 additions and 29 deletions
|
@ -1074,7 +1074,7 @@ class acp_attachments
|
|||
$error[] = $user->lang['FILES_GONE'];
|
||||
}
|
||||
add_log('admin', 'LOG_ATTACHMENTS_DELETED', implode(', ', $deleted_filenames));
|
||||
$notify[] = sprintf($user->lang['LOG_ATTACHMENTS_DELETED'], implode(', ', $deleted_filenames));
|
||||
$notify[] = sprintf($user->lang['LOG_ATTACHMENTS_DELETED'], implode($user->lang['COMMA_SEPARATOR'], $deleted_filenames));
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -291,7 +291,7 @@ class mcp_pm_reports
|
|||
'REPORT_ID' => $row['report_id'],
|
||||
'REPORT_TIME' => $user->format_date($row['report_time']),
|
||||
|
||||
'RECIPIENTS' => implode(', ', $address_list[$row['msg_id']]),
|
||||
'RECIPIENTS' => implode($user->lang['COMMA_SEPARATOR'], $address_list[$row['msg_id']]),
|
||||
'ATTACH_ICON_IMG' => ($auth->acl_get('u_download') && $row['message_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',
|
||||
));
|
||||
}
|
||||
|
|
|
@ -334,7 +334,7 @@ class phpbb_search_fulltext_native extends phpbb_search_base
|
|||
// throw an error if we shall not ignore unexistant words
|
||||
else if (!$ignore_no_id && sizeof($non_common_words))
|
||||
{
|
||||
trigger_error(sprintf($user->lang['WORDS_IN_NO_POST'], implode(', ', $non_common_words)));
|
||||
trigger_error(sprintf($user->lang['WORDS_IN_NO_POST'], implode($user->lang['COMMA_SEPARATOR'], $non_common_words)));
|
||||
}
|
||||
unset($non_common_words);
|
||||
}
|
||||
|
|
|
@ -157,7 +157,7 @@ $template->assign_vars(array(
|
|||
'NEWEST_USER' => $user->lang('NEWEST_USER', get_username_string('full', $config['newest_user_id'], $config['newest_username'], $config['newest_user_colour'])),
|
||||
|
||||
'LEGEND' => $legend,
|
||||
'BIRTHDAY_LIST' => (empty($birthday_list)) ? '' : implode(', ', $birthday_list),
|
||||
'BIRTHDAY_LIST' => (empty($birthday_list)) ? '' : implode($user->lang['COMMA_SEPARATOR'], $birthday_list),
|
||||
|
||||
'FORUM_IMG' => $user->img('forum_read', 'NO_UNREAD_POSTS'),
|
||||
'FORUM_UNREAD_IMG' => $user->img('forum_unread', 'UNREAD_POSTS'),
|
||||
|
|
Loading…
Add table
Reference in a new issue