Index: trunk/phase3/includes/SpecialUserlogin.php |
— | — | @@ -856,15 +856,15 @@ |
857 | 857 | |
858 | 858 | if ( !$this->hasSessionCookie() ) { |
859 | 859 | if ( $type == 'new' ) { |
860 | | - return $this->mainLoginForm( wfMsg( 'nocookiesnew' ) ); |
| 860 | + return $this->mainLoginForm( wfMsgExt( 'nocookiesnew', array( 'parseinline' ) ) ); |
861 | 861 | } else if ( $type == 'login' ) { |
862 | | - return $this->mainLoginForm( wfMsg( 'nocookieslogin' ) ); |
| 862 | + return $this->mainLoginForm( wfMsgExt( 'nocookieslogin', array( 'parseinline' ) ) ); |
863 | 863 | } else { |
864 | 864 | # shouldn't happen |
865 | 865 | return $this->mainLoginForm( wfMsg( 'error' ) ); |
866 | 866 | } |
867 | 867 | } else { |
868 | | - return $this->successfulLogin( wfMsg( 'loginsuccess', $wgUser->getName() ) ); |
| 868 | + return $this->successfulLogin( wfMsgExt( 'loginsuccess', array( 'parseinline' ), $wgUser->getName() ) ); |
869 | 869 | } |
870 | 870 | } |
871 | 871 | |