diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-15 23:12:28 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-04-15 23:12:28 +0000 |
| commit | 99405c6e4aad2a12cba434cabfc982e8f1ed046d (patch) | |
| tree | d223b4c052b08cf7baa58a2eb43b8c5321232ba1 /phpBB/viewtopic.php | |
| parent | dce7e4c2b82ce4cc99ac2042f765e68c0c97e92b (diff) | |
| download | forums-99405c6e4aad2a12cba434cabfc982e8f1ed046d.tar forums-99405c6e4aad2a12cba434cabfc982e8f1ed046d.tar.gz forums-99405c6e4aad2a12cba434cabfc982e8f1ed046d.tar.bz2 forums-99405c6e4aad2a12cba434cabfc982e8f1ed046d.tar.xz forums-99405c6e4aad2a12cba434cabfc982e8f1ed046d.zip | |
Enable/disable display of moderator listings
git-svn-id: file:///svn/phpbb/trunk@3842 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/viewtopic.php')
| -rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index e31b3c9b08..e0b500ea21 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -368,7 +368,7 @@ $template->assign_vars(array( 'PAGE_NUMBER' => (isset($_GET['view']) && $_GET['view'] == 'print') ? '' : on_page($total_posts, $config['posts_per_page'], $start), 'TOTAL_POSTS' => ($total_posts == 1) ? $user->lang['VIEW_TOPIC_POST'] : sprintf($user->lang['VIEW_TOPIC_POSTS'], $total_posts), 'MCP' => ($auth->acl_get('m_', $forum_id)) ? sprintf($user->lang['MCP'], "<a href=\"mcp.$phpEx?sid=" . $user->session_id . "&t=$topic_id&start=$start&st=$sort_days&sk=$sort_key&sd=$sort_dir&posts_per_page=" . $config['posts_per_page'] . '">', '</a>') : '', - 'MODERATORS' => (sizeof($forum_moderators[$forum_id])) ? implode(', ', $forum_moderators[$forum_id]) : $user->lang['NONE'], + 'MODERATORS' => (sizeof($forum_moderators[$forum_id])) ? implode(', ', $forum_moderators[$forum_id]) : '', 'POST_IMG' => $post_img, 'REPLY_IMG' => $reply_img, |
