1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-11 03:04:09 +02:00
git-svn-id: file:///svn/phpbb/trunk@7539 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
David M
2007-05-12 04:18:38 +00:00
parent f8302cbebf
commit 6ee1756d9b
2 changed files with 7 additions and 1 deletions

View File

@@ -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);