diff options
author | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 03:43:06 +0000 |
---|---|---|
committer | Paul 'flowerysong' Arthur <flowerysong00@yahoo.com> | 2010-03-14 03:43:06 +0000 |
commit | 5744c3ea4b476f7cdc8bad113432673e88f884d9 (patch) | |
tree | 7501c6227e88729d03e1e5bbde68b6badc2c10aa /lib | |
parent | 9a872491dd3d5846b772bdf2dc93873b7e8a688a (diff) | |
download | ampache-5744c3ea4b476f7cdc8bad113432673e88f884d9.tar.gz ampache-5744c3ea4b476f7cdc8bad113432673e88f884d9.tar.bz2 ampache-5744c3ea4b476f7cdc8bad113432673e88f884d9.zip |
Remove null auth method.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/class/vauth.class.php | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/lib/class/vauth.class.php b/lib/class/vauth.class.php index b4a4b77e..4364d75e 100644 --- a/lib/class/vauth.class.php +++ b/lib/class/vauth.class.php @@ -695,22 +695,6 @@ class vauth { return $results; } // http_auth - /** - * null_auth - * This is the equivalent of the old http_auth and assumes that if you - * can access the page, you're a trusted user. - * This is not a very secure method of authentication, since it allows - * you to log in with an arbitrary username. - */ - private static function null_auth($username) { - $results['success'] = true; - $results['type'] = 'null'; - $results['username'] = $username; - $results['name'] = $username; - $results['email'] = ''; - return $results; - } // null_auth - } // end of vauth class ?> |