aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/posting.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/posting.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/posting.php')
-rw-r--r--phpBB/posting.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php
index 7f57f693af..a17578e343 100644
--- a/phpBB/posting.php
+++ b/phpBB/posting.php
@@ -1362,7 +1362,7 @@ $template->assign_vars(array(
'FORUM_NAME' => $post_data['forum_name'],
'FORUM_DESC' => ($post_data['forum_desc']) ? generate_text_for_display($post_data['forum_desc'], $post_data['forum_desc_uid'], $post_data['forum_desc_bitfield'], $post_data['forum_desc_options']) : '',
'TOPIC_TITLE' => censor_text($post_data['topic_title']),
- 'MODERATORS' => (sizeof($moderators)) ? implode(', ', $moderators[$forum_id]) : '',
+ 'MODERATORS' => (sizeof($moderators)) ? implode($user->lang['COMMA_SEPARATOR'], $moderators[$forum_id]) : '',
'USERNAME' => ((!$preview && $mode != 'quote') || $preview) ? $post_data['username'] : '',
'SUBJECT' => $post_data['post_subject'],
'MESSAGE' => $post_data['post_text'],