Index: trunk/phase3/includes/specials/SpecialUserlogin.php |
— | — | @@ -460,9 +460,9 @@ |
461 | 461 | |
462 | 462 | case Login::NOT_EXISTS: |
463 | 463 | if( $wgUser->isAllowed( 'createaccount' ) ){ |
464 | | - $this->mainLoginForm( wfMsgExt( 'nosuchuser', 'parseinline', htmlspecialchars( $this->mName ) ) ); |
| 464 | + $this->mainLoginForm( wfMsgExt( 'nosuchuser', 'parseinline', htmlspecialchars( $this->mUsername ) ) ); |
465 | 465 | } else { |
466 | | - $this->mainLoginForm( wfMsgExt( 'nosuchusershort', 'parseinline', htmlspecialchars( $this->mName ) ) ); |
| 466 | + $this->mainLoginForm( wfMsgExt( 'nosuchusershort', 'parseinline', htmlspecialchars( $this->mUsername ) ) ); |
467 | 467 | } |
468 | 468 | break; |
469 | 469 | |