From: Brion Vibber Date: Sun, 6 Jul 2008 21:14:00 +0000 (+0000) Subject: * (bug 14709) Fix login success message formatting when using cookie check X-Git-Tag: 1.31.0-rc.0~46682 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=df03c1316f811360f22166fe405bcb01adace896;p=lhc%2Fweb%2Fwiklou.git * (bug 14709) Fix login success message formatting when using cookie check Double wikitext parsing... --- 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() ) ); } }