aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/mcp.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-05-12 04:18:38 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-05-12 04:18:38 +0000
commit6ee1756d9b1d3bfba83098e593a6637e65de0af4 (patch)
tree9bc9b23243bc3889b21af0de1be0b49b98aaeff2 /phpBB/mcp.php
parentf8302cbebf00d2fc158a1a84ea0c9af0f1a48787 (diff)
downloadforums-6ee1756d9b1d3bfba83098e593a6637e65de0af4.tar
forums-6ee1756d9b1d3bfba83098e593a6637e65de0af4.tar.gz
forums-6ee1756d9b1d3bfba83098e593a6637e65de0af4.tar.bz2
forums-6ee1756d9b1d3bfba83098e593a6637e65de0af4.tar.xz
forums-6ee1756d9b1d3bfba83098e593a6637e65de0af4.zip
#10267
git-svn-id: file:///svn/phpbb/trunk@7539 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/mcp.php')
-rw-r--r--phpBB/mcp.php6
1 files changed, 6 insertions, 0 deletions
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);