diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 14:48:39 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 14:48:39 -0500 |
commit | 577dbf89518521f581117df9575363c3a2e16b5f (patch) | |
tree | e6f949441cb503eaecf0ce8e33f9ee29657a0da8 /phpBB/includes/mcp/mcp_pm_reports.php | |
parent | eb5e33a7683e7eebaa5c180c00693d5d061c057c (diff) | |
download | forums-577dbf89518521f581117df9575363c3a2e16b5f.tar forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.gz forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.bz2 forums-577dbf89518521f581117df9575363c3a2e16b5f.tar.xz forums-577dbf89518521f581117df9575363c3a2e16b5f.zip |
[ticket/10990] Changes for develop
PHPBB3-10990
Diffstat (limited to 'phpBB/includes/mcp/mcp_pm_reports.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_pm_reports.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_pm_reports.php b/phpBB/includes/mcp/mcp_pm_reports.php index 41e912fff9..24e531517c 100644 --- a/phpBB/includes/mcp/mcp_pm_reports.php +++ b/phpBB/includes/mcp/mcp_pm_reports.php @@ -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']) : '', )); } |