From 6ee1756d9b1d3bfba83098e593a6637e65de0af4 Mon Sep 17 00:00:00 2001 From: David M Date: Sat, 12 May 2007 04:18:38 +0000 Subject: #10267 git-svn-id: file:///svn/phpbb/trunk@7539 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/mcp.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'phpBB/mcp.php') diff --git a/phpBB/mcp.php b/phpBB/mcp.php index d1cdaa2aef..a8042c5b57 100644 --- a/phpBB/mcp.php +++ b/phpBB/mcp.php @@ -56,6 +56,12 @@ $quickmod = (isset($_REQUEST['quickmod'])) ? true : false; $action = request_var('action', ''); $action_ary = request_var('action', array('' => 0)); +$forum_action = request_var('forum_action', ''); +if ($forum_action !== '' && !empty($_POST['sort'])) +{ + $action = $forum_action; +} + if (sizeof($action_ary)) { list($action, ) = each($action_ary); -- cgit v1.2.1