From b70ea3c680056c2bfadea7a06f38d88ccf9d01d1 Mon Sep 17 00:00:00 2001 From: fiedorow Date: Sat, 25 Jun 2005 13:20:30 +0000 Subject: [PATCH] Fix for broken no authentication --- auth/none/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/none/lib.php b/auth/none/lib.php index a1b3f100f01..483db5a9548 100644 --- a/auth/none/lib.php +++ b/auth/none/lib.php @@ -9,7 +9,7 @@ function auth_user_login ($username, $password) { return ($user->password == md5($password)); } - return false; + return true; }