1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-05-08 00:25:19 +02:00

[ticket/14222] Use request class instead of request_var in acp_users

PHPBB3-14222
This commit is contained in:
Marc Alexander 2015-10-08 10:52:00 +02:00
parent b13393078c
commit a679380f09

View File

@ -45,7 +45,7 @@ class acp_users
$action = $request->variable('action', ''); $action = $request->variable('action', '');
// Get referer to redirect user to the appropriate page after delete 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_tag = "redirect=$redirect";
$redirect_url = append_sid("{$phpbb_admin_path}index.$phpEx", "i=$redirect"); $redirect_url = append_sid("{$phpbb_admin_path}index.$phpEx", "i=$redirect");