From f3929d413c48c8d23121bee7acb2ab16246b1671 Mon Sep 17 00:00:00 2001 From: mjollnir_ Date: Sun, 4 Dec 2005 22:30:35 +0000 Subject: [PATCH] Merged from MOODLE_15_STABLE: Fixing problem where admins couldn't change their password (with external auth) --- login/change_password.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/login/change_password.php b/login/change_password.php index 5a2157ec5cb..e8af953d1d7 100644 --- a/login/change_password.php +++ b/login/change_password.php @@ -140,6 +140,10 @@ *****************************************************************************/ function validate_form($frm, &$err) { + // we always need to call this because it handles the + // loading of the auth libraries, and we need that for later. + $validatepw = authenticate_user_login($frm->username, $frm->password); + if (empty($frm->username)){ $err->username = get_string('missingusername'); } else { @@ -148,7 +152,7 @@ function validate_form($frm, &$err) { } else { if (!isadmin()) { //require non adminusers to give valid password - if(!authenticate_user_login($frm->username, $frm->password)) { + if(!$validatepw) { $err->password = get_string('wrongpassword'); } }