diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-30 11:09:51 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-03-30 11:09:51 +0000 |
commit | 9d3d63181f3735a63e266fa610067d74486c833e (patch) | |
tree | 3817a3ffe74d1b4ad1684784eef279096de73e69 /phpBB/mcp.php | |
parent | 1fae177b9a424db90c33d9cde373d360ebeac878 (diff) | |
download | forums-9d3d63181f3735a63e266fa610067d74486c833e.tar forums-9d3d63181f3735a63e266fa610067d74486c833e.tar.gz forums-9d3d63181f3735a63e266fa610067d74486c833e.tar.bz2 forums-9d3d63181f3735a63e266fa610067d74486c833e.tar.xz forums-9d3d63181f3735a63e266fa610067d74486c833e.zip |
Redirect to relevant MCP page of multi-page topic if accessing quickmod tools (Split option for example)
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9414 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r-- | phpBB/mcp.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php index 47578c3532..5f7aa3bd1f 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -170,6 +170,12 @@ if ($quickmod) break; case 'topic_logs': + // Reset start parameter if we jumped from the quickmod dropdown + if (request_var('start', 0)) + { + $_REQUEST['start'] = 0; + } + $module->set_active('logs', 'topic_logs'); break; |