Set $wgPasswordResetRoutes['email'] = true by default
authorNemo bis <federicoleva@tiscali.it>
Sat, 18 Jul 2015 16:19:19 +0000 (18:19 +0200)
committerNemo bis <federicoleva@tiscali.it>
Sat, 18 Jul 2015 16:20:58 +0000 (18:20 +0200)
It was not only for worries about large wikis, see 3ef8a83c0.
Wikipedia has been using it for a long while.

Change-Id: Ibab7fa860ba3ab56366c63626516e69984cd1934

RELEASE-NOTES-1.26
includes/DefaultSettings.php

index 81269b8..46ffe36 100644 (file)
@@ -9,6 +9,7 @@ MediaWiki 1.26 is an alpha-quality branch and is not recommended for use in
 production.
 
 === Configuration changes in 1.26 ===
+* $wgPasswordResetRoutes['email'] = true by default.
 * $wgEnableParserCache was deprecated, set $wgParserCacheType to CACHE_NONE
   instead if you want to disable the parser cache.
 * New-style continuation is now the default for API action=continue. Clients may
index 70ae468..baefef9 100644 (file)
@@ -4439,7 +4439,7 @@ $wgPasswordConfig = array(
  */
 $wgPasswordResetRoutes = array(
        'username' => true,
-       'email' => false,
+       'email' => true,
 );
 
 /**