From 92710226a594bcb2c3b31790d433fbf026d839e7 Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 22 Nov 2002 09:38:15 +0000 Subject: [PATCH] Tidy up some of the dox --- lib/moodlelib.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/moodlelib.php b/lib/moodlelib.php index 51ae6dd784..ae0372c7e5 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -1443,6 +1443,9 @@ function authenticate_user_login($username, $password) { } // If this is the admin, then just use internal methods + // Doing this first (even though it's less efficient) because + // the chosen authentication method might hang and lock the + // admin out. if ($user = get_record_sql("SELECT u.id FROM user u, user_admins a WHERE u.id = a.user AND u.username = '$username' @@ -1450,12 +1453,13 @@ function authenticate_user_login($username, $password) { return get_user_info_from_db("username", $username); } + // OK, the user is a normal user, so try and authenticate them require_once("$CFG->dirroot/auth/$CFG->auth/lib.php"); if (auth_user_login($username, $password)) { // Successful authentication if ($user = get_user_info_from_db("username", $username)) { - if ($md5password <> $user->password) { + if ($md5password <> $user->password) { // Update local copy of password for reference set_field("user", "password", $md5password, "username", $username); } return $user; -- 2.39.5