mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 18:54:08 +02:00
add nils' request and super globals class
rename request:: to phpbb_request:: git-svn-id: file:///svn/phpbb/trunk@9230 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -52,7 +52,7 @@ if (!$user->data['is_registered'])
|
||||
login_box('', $user->lang['LOGIN_EXPLAIN_MCP']);
|
||||
}
|
||||
|
||||
$quickmod = request::is_set('quickmod');
|
||||
$quickmod = phpbb_request::is_set('quickmod');
|
||||
$action = request_var('action', '');
|
||||
$action_ary = request_var('action', array('' => 0));
|
||||
$forum_action = request_var('forum_action', '');
|
||||
@@ -61,7 +61,7 @@ if (sizeof($action_ary))
|
||||
{
|
||||
$action = key($action_ary);
|
||||
}
|
||||
else if (!empty($forum_action) && request::variable('sort', false, false, request::POST))
|
||||
else if (!empty($forum_action) && phpbb_request::variable('sort', false, false, phpbb_request::POST))
|
||||
{
|
||||
$action = $forum_action;
|
||||
}
|
||||
|
Reference in New Issue
Block a user