From: Alexandre Emsenhuber Date: Thu, 29 May 2008 17:50:09 +0000 (+0000) Subject: (bug 14324) Creating an account is again possible with set to true X-Git-Tag: 1.31.0-rc.0~47302 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=38a34bb4179d53bfd00027a1922ce95c977e80cb;p=lhc%2Fweb%2Fwiklou.git (bug 14324) Creating an account is again possible with set to true --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index f516f7f35d..9355d36c18 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -311,6 +311,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN * (bug 14312) Update LanguageKaa.php for handling transform issues with i to İ and I to ı * (bug 13826) MediaWiki:Defaultns accepts Wikicode +* (bug 14324) Creating an account is again possible with $wgEmailConfirmToEdit + set to true === API changes in 1.13 === diff --git a/includes/Title.php b/includes/Title.php index 4ddd57da6d..f7116cc445 100644 --- a/includes/Title.php +++ b/includes/Title.php @@ -1058,7 +1058,7 @@ class Title { global $wgLang; global $wgEmailConfirmToEdit; - if ( $wgEmailConfirmToEdit && !$user->isEmailConfirmed() ) { + if ( $wgEmailConfirmToEdit && !$user->isEmailConfirmed() && $action != 'createaccount' ) { $errors[] = array( 'confirmedittext' ); }