From df03c1316f811360f22166fe405bcb01adace896 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 6 Jul 2008 21:14:00 +0000 Subject: [PATCH] * (bug 14709) Fix login success message formatting when using cookie check Double wikitext parsing... --- RELEASE-NOTES | 1 + includes/specials/SpecialUserlogin.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 6758804bc4..6236654fe2 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -414,6 +414,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN keeps the log page from being distorted. * (bug 14708) Emulate INSERT...IGNORE with standard SQL for Postgres backend. * (bug 14646) Fix some double-escaping of HTML in feed output +* (bug 14709) Fix login success message formatting when using cookie check === API changes in 1.13 === diff --git a/includes/specials/SpecialUserlogin.php b/includes/specials/SpecialUserlogin.php index 179ef3f9d2..cca3501efb 100644 --- a/includes/specials/SpecialUserlogin.php +++ b/includes/specials/SpecialUserlogin.php @@ -870,7 +870,7 @@ class LoginForm { return $this->mainLoginForm( wfMsg( 'error' ) ); } } else { - return $this->successfulLogin( wfMsgExt( 'loginsuccess', array( 'parseinline' ), $wgUser->getName() ) ); + return $this->successfulLogin( wfMsg( 'loginsuccess', $wgUser->getName() ) ); } } -- 2.20.1