diff options
-rwxr-xr-x | phpBB/includes/mcp/mcp_logs.php | 6 | ||||
-rw-r--r-- | phpBB/mcp.php | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/phpBB/includes/mcp/mcp_logs.php b/phpBB/includes/mcp/mcp_logs.php index 21fafa5df2..182f028a0f 100755 --- a/phpBB/includes/mcp/mcp_logs.php +++ b/phpBB/includes/mcp/mcp_logs.php @@ -55,12 +55,12 @@ class mcp_logs case 'front': $where_sql = ''; break; - case 'forum_view': + case 'forum_logs': $forum_id = request_var('f', 0); $where_sql = " AND forum_id = $forum_id"; break; - case 'topic_view': - $topic_id = request_vat('t', 0); + case 'topic_logs': + $topic_id = request_var('t', 0); $where_sql = " AND topic_id = $topic_id"; break; } diff --git a/phpBB/mcp.php b/phpBB/mcp.php index 2eda2ad922..a89b1c9172 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -243,12 +243,12 @@ function _module_main_post_details_url() return extra_url(); } -function _module_logs_forum_view_url() +function _module_logs_forum_logs_url() { return extra_url(); } -function _module_logs_topic_view_url() +function _module_logs_topic_logs_url() { return extra_url(); } |