Fixing link not displayed for nosuchuser message, bug #15838
authorBertrand Grondin <grondin@users.mediawiki.org>
Sat, 4 Oct 2008 23:03:26 +0000 (23:03 +0000)
committerBertrand Grondin <grondin@users.mediawiki.org>
Sat, 4 Oct 2008 23:03:26 +0000 (23:03 +0000)
includes/specials/SpecialUserlogin.php

index b6908c9..a7d80df 100644 (file)
@@ -548,7 +548,7 @@ class LoginForm {
                                break;
                        case self::NOT_EXISTS:
                                if( $wgUser->isAllowed( 'createaccount' ) ){
-                                       $this->mainLoginForm( wfMsg( 'nosuchuser', htmlspecialchars( $this->mName ) ) );
+                                       $this->mainLoginForm( wfMsgWikiHtml( 'nosuchuser', htmlspecialchars( $this->mName ) ) );
                                } else {
                                        $this->mainLoginForm( wfMsg( 'nosuchusershort', htmlspecialchars( $this->mName ) ) );
                                }