From b9b49ebfb6b9245e3cee08228d12e07f6e178132 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 28 Mar 2009 16:43:02 +0000 Subject: [PATCH] (bug 18222) $wgMinimalPasswordLength default is now 1 --- RELEASE-NOTES | 1 + includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index c820b7c861..7ddd8f81b6 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -30,6 +30,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN to upon logging in (ex: "Main Page") * Add $wgExportFromNamespaces for enabling/disabling the "export all from namespace" option (disabled by default) +* (bug 18222) $wgMinimalPasswordLength default is now 1 === New features in 1.15 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 28cbfc83f8..d48a4cc346 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -3204,7 +3204,7 @@ $wgExemptFromUserRobotsControl = null; * Specifies the minimal length of a user password. If set to 0, empty pass- * words are allowed. */ -$wgMinimalPasswordLength = 0; +$wgMinimalPasswordLength = 1; /** * Activate external editor interface for files and pages -- 2.20.1