mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-10 13:28:55 +00:00
[ticket/14222] Use request class instead of request_var in acp_users
PHPBB3-14222
This commit is contained in:
parent
b13393078c
commit
a679380f09
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ class acp_users
|
|||
$action = $request->variable('action', '');
|
||||
|
||||
// Get referer to redirect user to the appropriate page after delete action
|
||||
$redirect = request_var('redirect', '');
|
||||
$redirect = $request->variable('redirect', '');
|
||||
$redirect_tag = "redirect=$redirect";
|
||||
$redirect_url = append_sid("{$phpbb_admin_path}index.$phpEx", "i=$redirect");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue