From 4c528691e128da106785dd31fe6973726abbfbd8 Mon Sep 17 00:00:00 2001 From: Legoktm Date: Mon, 13 Jul 2015 23:07:02 +0000 Subject: [PATCH] Revert "Add 'AuthPluginStrict' log to identify users who are unable to authenticate" Does not work as it will also log failed login attempts due to a wrong password. This reverts commit 9a97a7530f2a637cbb95603cfa4e0b51da753207. Change-Id: I6abd19da4e6939315a7fe6f7debe5227b68d38a7 --- includes/User.php | 1 - 1 file changed, 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 772330bb26..95ac0f1ed1 100644 --- a/includes/User.php +++ b/includes/User.php @@ -4005,7 +4005,6 @@ class User implements IDBAccessObject { return true; } elseif ( $wgAuth->strict() ) { // Auth plugin doesn't allow local authentication - wfDebugLog( 'AuthPluginStrict', "Authentication denied for {$this->getName()}" ); return false; } elseif ( $wgAuth->strictUserAuth( $this->getName() ) ) { // Auth plugin doesn't allow local authentication for this user name -- 2.20.1