From f1330920534d5e2fd17269d6a0cbac51cc7a4e6f Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Tue, 24 Nov 2009 14:50:40 +0000 Subject: [PATCH] MDL-20948 reverting previous commit, wrong branch! --- admin/user/user_bulk_forcepasswordchange.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/user/user_bulk_forcepasswordchange.php b/admin/user/user_bulk_forcepasswordchange.php index 4c2226657a2..e3af5197963 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->is_internal() and $auth->can_change_password()) { + if (@$auth->is_internal() and @$auth->can_change_password()) { // plugins may not be configured yet, not nice :-( $changeable[$authname] = true; } }