diff options
author | Andreas Gohr <andi@splitbrain.org> | 2009-11-14 13:35:17 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2009-11-14 13:35:17 +0100 |
commit | d752aedee962294dd2bbc120557d6b6b79c970a9 (patch) | |
tree | 58b78866250c0387aaf6876721f5665c13e7163a /inc/auth/plain.class.php | |
parent | 191bb90af90d4b063435ee55d67082e7453ed1fb (diff) | |
download | rpg-d752aedee962294dd2bbc120557d6b6b79c970a9.tar.gz rpg-d752aedee962294dd2bbc120557d6b6b79c970a9.tar.bz2 |
more work on user and group cleaning
Ignore-this: b824c2941d3631bdf83350e325606d3e
darcs-hash:20091114123517-7ad00-d32833a88cb5f654a8874542d4d59f1f401d4453.gz
Diffstat (limited to 'inc/auth/plain.class.php')
-rw-r--r-- | inc/auth/plain.class.php | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/inc/auth/plain.class.php b/inc/auth/plain.class.php index 0ff18d58a..3983a7d44 100644 --- a/inc/auth/plain.class.php +++ b/inc/auth/plain.class.php @@ -12,16 +12,6 @@ require_once(DOKU_AUTH.'/basic.class.php'); define('AUTH_USERFILE',DOKU_CONF.'users.auth.php'); -// we only accept page ids for auth_plain -if(isset($_REQUEST['u'])) - $_REQUEST['u'] = cleanID($_REQUEST['u']); -if(isset($_REQUEST['acl_user'])) - $_REQUEST['acl_user'] = cleanID($_REQUEST['acl_user']); -// the same goes for password reset requests -if(isset($_POST['login'])){ - $_POST['login'] = cleanID($_POST['login']); -} - class auth_plain extends auth_basic { var $users = null; |