Skip to content

Commit

Permalink
Add one missing return causing db(internal) pass change not to work.
Browse files Browse the repository at this point in the history
Partially, MDL-9491

Merged from MOODLE_18_STABLE
  • Loading branch information
stronk7 committed Apr 22, 2007
1 parent 65acd2b commit d972bfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion auth/db/auth.php
Expand Up @@ -198,7 +198,7 @@ function user_update_password($user, $newpassword) {

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;
Expand Down

0 comments on commit d972bfd

Please sign in to comment.