From 6f317cab947c5e0e507f9040c1652d49163ca1b6 Mon Sep 17 00:00:00 2001 From: Nemo bis Date: Sat, 18 Jul 2015 18:19:19 +0200 Subject: [PATCH] Set $wgPasswordResetRoutes['email'] = true by default 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 | 1 + includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.26 b/RELEASE-NOTES-1.26 index 81269b8608..46ffe3619a 100644 --- a/RELEASE-NOTES-1.26 +++ b/RELEASE-NOTES-1.26 @@ -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 diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 70ae4682de..baefef91ef 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4439,7 +4439,7 @@ $wgPasswordConfig = array( */ $wgPasswordResetRoutes = array( 'username' => true, - 'email' => false, + 'email' => true, ); /** -- 2.20.1