From f90d3476c698ebd21119b4e162c600ad731fb13f Mon Sep 17 00:00:00 2001 From: skodak Date: Tue, 20 Mar 2007 07:54:39 +0000 Subject: [PATCH] MDL-8968 no auth plugin broken --- auth/none/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/none/auth.php b/auth/none/auth.php index 01305c9d9b3..76211ba548f 100644 --- a/auth/none/auth.php +++ b/auth/none/auth.php @@ -49,7 +49,7 @@ class auth_plugin_none { if ($user = get_record('user', 'username', $username, 'mnethostid', $CFG->mnet_localhost_id)) { return validate_internal_user_password($user, $password); } - return false; + return true; } /**