From: Siebrand Mazeland Date: Wed, 26 May 2010 21:22:12 +0000 (+0000) Subject: Allow use of GENDER in 'noemail' message. X-Git-Tag: 1.31.0-rc.0~36703 X-Git-Url: https://git.cyclocoop.org/%27.%24link.%27?a=commitdiff_plain;h=9e51186e4792e83ffe46cc059569e39a3f969171;p=lhc%2Fweb%2Fwiklou.git Allow use of GENDER in 'noemail' message. --- diff --git a/includes/specials/SpecialUserlogin.php b/includes/specials/SpecialUserlogin.php index 8b8d0e9edd..4f231e69ec 100644 --- a/includes/specials/SpecialUserlogin.php +++ b/includes/specials/SpecialUserlogin.php @@ -128,7 +128,7 @@ class LoginForm { global $wgOut; if ( $this->mEmail == '' ) { - $this->mainLoginForm( wfMsg( 'noemail', htmlspecialchars( $this->mName ) ) ); + $this->mainLoginForm( wfMsgExt( 'noemail', 'parsemag', htmlspecialchars( $this->mName ) ) ); return; }