From 4b3edb21bdce9a5445dd74b6cdede9d2f695fbd8 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Thu, 4 Sep 2014 11:02:34 -0700 Subject: [PATCH] Profile User::checkPassword Change-Id: I2e7e9574a56725f4e7c34415b241006a933f631d --- includes/User.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 6b42994ef7..942ba82393 100644 --- a/includes/User.php +++ b/includes/User.php @@ -3788,12 +3788,14 @@ class User implements IDBAccessObject { */ public function checkPassword( $password ) { global $wgAuth, $wgLegacyEncoding; + + $section = new ProfileSection( __METHOD__ ); + $this->loadPasswords(); // Certain authentication plugins do NOT want to save // domain passwords in a mysql database, so we should // check this (in case $wgAuth->strict() is false). - if ( $wgAuth->authenticate( $this->getName(), $password ) ) { return true; } elseif ( $wgAuth->strict() ) { -- 2.20.1