From d972bfd01af776aee86e683de67bfc02068f9a1d Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 22 Apr 2007 14:19:43 +0000 Subject: [PATCH] Add one missing return causing db(internal) pass change not to work. Partially, MDL-9491 Merged from MOODLE_18_STABLE --- auth/db/auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth/db/auth.php b/auth/db/auth.php index 4e742c8dd2..23f4962c3d 100644 --- a/auth/db/auth.php +++ b/auth/db/auth.php @@ -198,7 +198,7 @@ class auth_plugin_db extends auth_plugin_base { global $CFG; if ($this->config->passtype === 'internal') { - update_internal_user_password($user, $newpassword); + return update_internal_user_password($user, $newpassword); } else { // we should have never been called! return false; -- 2.39.5