diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-18 15:09:19 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2009-04-18 15:09:19 +0000 |
commit | 1042152a55ab2d0764c446949a77f085ab7a77f3 (patch) | |
tree | 008dc317ce03e80988c8c79f8c6d0cf263a02b32 /phpBB/mcp.php | |
parent | fix LIMIT ALL in postgres layer (diff) | |
download | phpbb-1042152a55ab2d0764c446949a77f085ab7a77f3.tar.gz phpbb-1042152a55ab2d0764c446949a77f085ab7a77f3.tar.bz2 phpbb-1042152a55ab2d0764c446949a77f085ab7a77f3.zip |
Merge changes made in revisions #r9405 to #r9467
2009-04-18
git-svn-id: file:///svn/phpbb/trunk@9468 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r-- | phpBB/mcp.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/mcp.php b/phpBB/mcp.php index ba0e47c6c2..df1bf291de 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -169,6 +169,13 @@ if ($quickmod) break; case 'topic_logs': + // Reset start parameter if we jumped from the quickmod dropdown + if (request_var('start', 0)) + { + phpbb_request::overwrite('start', 0, phpbb_request::GET); + phpbb_request::overwrite('start', 0, phpbb_request::REQUEST); + } + $module->set_active('logs', 'topic_logs'); break; |