From 376b3141e5e63f73cadafc21715d305288e1baeb Mon Sep 17 00:00:00 2001 From: skodak Date: Tue, 20 Mar 2007 07:55:54 +0000 Subject: [PATCH] MDL-8968 no auth plugin broken; merged from MOODLE_18_STABLE --- 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 01305c9d9b..76211ba548 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; } /** -- 2.39.5