diff options
author | Graham Eames <grahamje@users.sourceforge.net> | 2006-01-14 22:57:19 +0000 |
---|---|---|
committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-01-14 22:57:19 +0000 |
commit | c3edbfa6f063adc28b332f2d9df75136e65f33f1 (patch) | |
tree | ed22c801135a11b8c28445d3996819723c4b6cff /phpBB/viewtopic.php | |
parent | 49b29c03ce8d00b207e91456be91a255a9730594 (diff) | |
download | forums-c3edbfa6f063adc28b332f2d9df75136e65f33f1.tar forums-c3edbfa6f063adc28b332f2d9df75136e65f33f1.tar.gz forums-c3edbfa6f063adc28b332f2d9df75136e65f33f1.tar.bz2 forums-c3edbfa6f063adc28b332f2d9df75136e65f33f1.tar.xz forums-c3edbfa6f063adc28b332f2d9df75136e65f33f1.zip |
Initial implementation of a log viewer into the MCP
git-svn-id: file:///svn/phpbb/trunk@5460 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 2a4bba6f52..62d8ef9a94 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -431,7 +431,7 @@ $topic_mod .= ($auth->acl_get('m_', $forum_id) && $topic_data['topic_type'] != P $topic_mod .= ($auth->acl_get('f_sticky', $forum_id) && $topic_data['topic_type'] != POST_STICKY) ? '<option value="make_sticky">' . $user->lang['MAKE_STICKY'] . '</option>' : ''; $topic_mod .= ($auth->acl_get('f_announce', $forum_id) && $topic_data['topic_type'] != POST_ANNOUNCE) ? '<option value="make_announce">' . $user->lang['MAKE_ANNOUNCE'] . '</option>' : ''; $topic_mod .= ($auth->acl_get('f_announce', $forum_id) && $topic_data['topic_type'] != POST_GLOBAL) ? '<option value="make_global">' . $user->lang['MAKE_GLOBAL'] . '</option>' : ''; -$topic_mod .= ($auth->acl_get('m_', $forum_id)) ? '<option value="viewlogs">' . $user->lang['VIEW_TOPIC_LOGS'] . '</option>' : ''; +$topic_mod .= ($auth->acl_get('m_', $forum_id)) ? '<option value="topic_logs">' . $user->lang['VIEW_TOPIC_LOGS'] . '</option>' : ''; // If we've got a hightlight set pass it on to pagination. $pagination = generate_pagination("{$phpbb_root_path}viewtopic.$phpEx$SID&f=$forum_id&t=$topic_id&$u_sort_param" . (($highlight_match) ? "&hilit=$highlight" : ''), $total_posts, $config['posts_per_page'], $start); |