From: Petr Skoda Date: Tue, 24 Nov 2009 08:42:38 +0000 (+0000) Subject: MDL-19608 do not force changing of password in external accounts X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d91fee8bb62808675ad6de675d9057036b166954;p=moodle.git MDL-19608 do not force changing of password in external accounts --- diff --git a/admin/user/user_bulk_forcepasswordchange.php b/admin/user/user_bulk_forcepasswordchange.php index d47a7fff26..5e02065f44 100644 --- a/admin/user/user_bulk_forcepasswordchange.php +++ b/admin/user/user_bulk_forcepasswordchange.php @@ -29,7 +29,7 @@ if ($confirm and confirm_sesskey()) { if (!$auth = get_auth_plugin($authname)) { continue; } - if (@$auth->can_change_password()) { // plugins may not be configured yet, not nice :-( + if (@$auth->is_internal() and @$auth->can_change_password()) { // plugins may not be configured yet, not nice :-( $changeable[$authname] = true; } }