* (bug 14709) Fix login success message formatting when using cookie check
authorBrion Vibber <brion@users.mediawiki.org>
Sun, 6 Jul 2008 21:14:00 +0000 (21:14 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Sun, 6 Jul 2008 21:14:00 +0000 (21:14 +0000)
Double wikitext parsing...

RELEASE-NOTES
includes/specials/SpecialUserlogin.php

index 6758804..6236654 100644 (file)
@@ -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 ===
index 179ef3f..cca3501 100644 (file)
@@ -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() ) );
                }
        }