diff options
author | Michael Hamann <michael@content-space.de> | 2013-02-20 20:26:05 +0100 |
---|---|---|
committer | Michael Hamann <michael@content-space.de> | 2013-02-20 20:45:49 +0100 |
commit | 00d58927261c5bed6f093ca4aa2064a18139a228 (patch) | |
tree | 7a7c4fc9f47e63b3a7e7a71346400b88307cdaf5 /inc/auth.php | |
parent | 5737a81e37e630de02f54e4e6304ede226159306 (diff) | |
download | rpg-00d58927261c5bed6f093ca4aa2064a18139a228.tar.gz rpg-00d58927261c5bed6f093ca4aa2064a18139a228.tar.bz2 |
Fix remaining missing $INPUT uses FS#2577
This adds $INPUT in all places where it was still missing and available.
$INPUT is now also used in places where using $_REQUEST/... was okay in
order to make the code consistent.
Diffstat (limited to 'inc/auth.php')
-rw-r--r-- | inc/auth.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/auth.php b/inc/auth.php index 92a56e163..68b6b438d 100644 --- a/inc/auth.php +++ b/inc/auth.php @@ -92,7 +92,7 @@ function auth_setup() { // apply cleaning if (true === $auth->success) { - $_REQUEST['u'] = $auth->cleanUser($_REQUEST['u']); + $INPUT->set('u', $auth->cleanUser($INPUT->str('u'))); } if($INPUT->str('authtok')) { |