aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorIgor Wiedler <igor@wiedler.ch>2012-07-26 16:12:21 +0200
committerIgor Wiedler <igor@wiedler.ch>2012-07-26 16:12:21 +0200
commitcec4c94f2edff43508f20d8838399f4114557134 (patch)
treea130a5bebdfb2d09de0de9293882ad74d6726333 /phpBB/viewtopic.php
parent8a264228d01215fe1020bf946fc95c804ba95450 (diff)
parentd1e56868667234b4d8ea61a79463c3e3e47efa80 (diff)
downloadforums-cec4c94f2edff43508f20d8838399f4114557134.tar
forums-cec4c94f2edff43508f20d8838399f4114557134.tar.gz
forums-cec4c94f2edff43508f20d8838399f4114557134.tar.bz2
forums-cec4c94f2edff43508f20d8838399f4114557134.tar.xz
forums-cec4c94f2edff43508f20d8838399f4114557134.zip
Merge remote-tracking branch 'upstream/develop' into feature/dic
* upstream/develop: (39 commits) [ticket/11025] Add underline for hover to classes [ticket/11025] Replace <b> with <strong> and/or class for semantic styling in subsilver2 [ticket/11025] Replace <b> with <strong> and/or class for semantic styling [ticket/11025] Make last topic titles in forum list Bold [prep-release-3.0.11] Update Changelog for 3.0.11-RC2 release. [prep-release-3.0.11] Bumping version number for 3.0.11-RC2. [ticket/10965] Profile data is only grabbed when show_novalue is enabled [ticket/10965] Make sure all profile fields are always grabbed on viewtopic [ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1 [ticket/10965] Introduce a new profile field option to display no value [ticket/10990] Changes for develop [ticket/10990] Do not use comma separator when storing it as a log. [ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriate [ticket/10667] Fix tests under MySQL 5.5 strict mode (once again) [ticket/10667] Fix tests under MySQL 5.5 strict mode (once again) [ticket/11012] Fix php_ext change in mock_extension_manager [ticket/11012] Normalize $phpEx member vars to $php_ext [ticket/11002] Use translating option to rename the Etc/GMT options [ticket/11009] Backport build.xml from develop to fix Bamboo Unit Testing. [ticket/11008] Change onunload_functions to not use eval() ...
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 349f53cbe2..b6df14d42d 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -602,7 +602,7 @@ $template->assign_vars(array(
'PAGE_NUMBER' => phpbb_on_page($template, $user, $base_url, $total_posts, $config['posts_per_page'], $start),
'TOTAL_POSTS' => $user->lang('VIEW_TOPIC_POSTS', (int) $total_posts),
'U_MCP' => ($auth->acl_get('m_', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&amp;mode=topic_view&amp;f=$forum_id&amp;t=$topic_id" . (($start == 0) ? '' : "&amp;start=$start") . ((strlen($u_sort_param)) ? "&amp;$u_sort_param" : ''), true, $user->session_id) : '',
- 'MODERATORS' => (isset($forum_moderators[$forum_id]) && sizeof($forum_moderators[$forum_id])) ? implode(', ', $forum_moderators[$forum_id]) : '',
+ 'MODERATORS' => (isset($forum_moderators[$forum_id]) && sizeof($forum_moderators[$forum_id])) ? implode($user->lang['COMMA_SEPARATOR'], $forum_moderators[$forum_id]) : '',
'POST_IMG' => ($topic_data['forum_status'] == ITEM_LOCKED) ? $user->img('button_topic_locked', 'FORUM_LOCKED') : $user->img('button_topic_new', 'POST_NEW_TOPIC'),
'QUOTE_IMG' => $user->img('icon_post_quote', 'REPLY_WITH_QUOTE'),