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 /lib/plugins/authad/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 'lib/plugins/authad/auth.php')
-rw-r--r-- | lib/plugins/authad/auth.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/plugins/authad/auth.php b/lib/plugins/authad/auth.php index f651d87a1..6c49eafbb 100644 --- a/lib/plugins/authad/auth.php +++ b/lib/plugins/authad/auth.php @@ -71,6 +71,7 @@ class auth_plugin_authad extends DokuWiki_Auth_Plugin { * Constructor */ public function __construct() { + global $INPUT; parent::__construct(); // we load the config early to modify it a bit here @@ -99,8 +100,8 @@ class auth_plugin_authad extends DokuWiki_Auth_Plugin { // we need to simulate a login if(empty($_COOKIE[DOKU_COOKIE])) { - $_REQUEST['u'] = $_SERVER['REMOTE_USER']; - $_REQUEST['p'] = 'sso_only'; + $INPUT->set('u', $_SERVER['REMOTE_USER']); + $INPUT->set('p', 'sso_only'); } } |