http://www.mediawiki.org/wiki/Special:Code/MediaWiki/89099

Revision: 89099
Author:   raymond
Date:     2011-05-29 13:22:13 +0000 (Sun, 29 May 2011)
Log Message:
-----------
Fix message key for account creation by e-mail.
'noemail' => 'There is no e-mail address recorded for user "$1".' is 
misleading/wrong.
The long existing message 'noemailcreate' => 'You need to provide a valid 
e-mail address' is unused. No idea what happened in the past.
Needs merging to 1.17, 1.18

Modified Paths:
--------------
    trunk/phase3/includes/specials/SpecialUserlogin.php

Modified: trunk/phase3/includes/specials/SpecialUserlogin.php
===================================================================
--- trunk/phase3/includes/specials/SpecialUserlogin.php 2011-05-29 12:45:58 UTC 
(rev 89098)
+++ trunk/phase3/includes/specials/SpecialUserlogin.php 2011-05-29 13:22:13 UTC 
(rev 89099)
@@ -158,7 +158,7 @@
                global $wgOut;
 
                if ( $this->mEmail == '' ) {
-                       $this->mainLoginForm( wfMsgExt( 'noemail', array( 
'parsemag', 'escape' ), $this->mUsername ) );
+                       $this->mainLoginForm( wfMsgExt( 'noemailcreate', array( 
'parsemag', 'escape' ), $this->mUsername ) );
                        return;
                }
 


_______________________________________________
MediaWiki-CVS mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-cvs

Reply via email to