diff options
author | Nathan <exreaction@phpbb.com> | 2012-07-14 18:12:57 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-07-22 14:32:03 -0500 |
commit | 67665f59577092badf7eb0b5585e5ae39c52c8da (patch) | |
tree | 93f6b91eef6b0f4cbb6bdb748cba089b5559a94c /phpBB/includes/functions_privmsgs.php | |
parent | 841ea0e494504400c798faa6cc860dd1179e1004 (diff) | |
download | forums-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/functions_privmsgs.php')
-rw-r--r-- | phpBB/includes/functions_privmsgs.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 8542e3ab0a..7a6ccf08da 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -2045,7 +2045,7 @@ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode 'SUBJECT' => $subject, 'SENT_DATE' => $user->format_date($row['message_time']), 'MESSAGE' => $message, - 'FOLDER' => implode(', ', $row['folder']), + 'FOLDER' => implode($user->lang['COMMA_SEPARATOR'], $row['folder']), 'DECODED_MESSAGE' => $decoded_message, 'S_CURRENT_MSG' => ($row['msg_id'] == $msg_id), |