aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_pm_compose.php
diff options
context:
space:
mode:
authorNathan <exreaction@phpbb.com>2012-07-14 18:12:57 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:32:03 -0500
commit67665f59577092badf7eb0b5585e5ae39c52c8da (patch)
tree93f6b91eef6b0f4cbb6bdb748cba089b5559a94c /phpBB/includes/ucp/ucp_pm_compose.php
parent841ea0e494504400c798faa6cc860dd1179e1004 (diff)
downloadforums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.gz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.bz2
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.xz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.zip
[ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriate
PHPBB3-10990
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_compose.php')
-rw-r--r--phpBB/includes/ucp/ucp_pm_compose.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index 1b474457b3..d8bcd374fe 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -874,7 +874,7 @@ function compose_pm($id, $mode, $action, $user_folders = array())
$forward_text[] = sprintf($user->lang['FWD_SUBJECT'], censor_text($message_subject));
$forward_text[] = sprintf($user->lang['FWD_DATE'], $user->format_date($message_time, false, true));
$forward_text[] = sprintf($user->lang['FWD_FROM'], $quote_username_text);
- $forward_text[] = sprintf($user->lang['FWD_TO'], implode(', ', $fwd_to_field['to']));
+ $forward_text[] = sprintf($user->lang['FWD_TO'], implode($user->lang['COMMA_SEPARATOR'], $fwd_to_field['to']));
$message_parser->message = implode("\n", $forward_text) . "\n\n[quote=&quot;{$quote_username}&quot;]\n" . censor_text(trim($message_parser->message)) . "\n[/quote]";
$message_subject = ((!preg_match('/^Fwd:/', $message_subject)) ? 'Fwd: ' : '') . censor_text($message_subject);