From: stronk7 Date: Sun, 22 Apr 2007 14:19:43 +0000 (+0000) Subject: Add one missing return causing db(internal) pass change not to work. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d972bfd01af776aee86e683de67bfc02068f9a1d;p=moodle.git Add one missing return causing db(internal) pass change not to work. Partially, MDL-9491 Merged from MOODLE_18_STABLE --- 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;