From de2563d37aacb2caadec87b5396fb9b63d07e2fc Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gerg=C5=91=20Tisza?= Date: Tue, 17 May 2016 00:25:47 +0000 Subject: [PATCH] Fix AuthManager login page breakage Change-Id: I9b32dd58a4139ebf7483354c63dab7816ef7822e --- includes/specials/pre-authmanager/SpecialUserlogin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/specials/pre-authmanager/SpecialUserlogin.php b/includes/specials/pre-authmanager/SpecialUserlogin.php index e8c13e33c5..4af5cf696a 100644 --- a/includes/specials/pre-authmanager/SpecialUserlogin.php +++ b/includes/specials/pre-authmanager/SpecialUserlogin.php @@ -1197,7 +1197,7 @@ class LoginFormPreAuthManager extends SpecialPage { protected function resetLoginForm( Message $msg ) { // Allow hooks to explain this password reset in more detail Hooks::run( 'LoginPasswordResetMessage', [ &$msg, $this->mUsername ] ); - $reset = new SpecialChangePassword(); + $reset = new SpecialChangePasswordPreAuthManager(); $derivative = new DerivativeContext( $this->getContext() ); $derivative->setTitle( $reset->getPageTitle() ); $reset->setContext( $derivative ); -- 2.20.1