X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDefaultSettings.php;h=2f1efbf549ca5a966cf48356debc3cd2e376e095;hp=0acce583397f59abe2c69a9bd4f170cf93a75310;hb=0770f85a0a293e6c7af6f1d3d3a1dbd2d13c1e09;hpb=04e6f695837f03add4a41ce3d8e612ff807a82ff diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 0acce58339..2f1efbf549 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4478,28 +4478,28 @@ $wgCentralIdLookupProvider = 'local'; $wgPasswordPolicy = [ 'policies' => [ 'bureaucrat' => [ - 'MinimalPasswordLength' => 8, + 'MinimalPasswordLength' => 10, 'MinimumPasswordLengthToLogin' => 1, 'PasswordCannotMatchUsername' => true, 'PasswordCannotBePopular' => 25, 'PasswordNotInLargeBlacklist' => true, ], 'sysop' => [ - 'MinimalPasswordLength' => 8, + 'MinimalPasswordLength' => 10, 'MinimumPasswordLengthToLogin' => 1, 'PasswordCannotMatchUsername' => true, 'PasswordCannotBePopular' => 25, 'PasswordNotInLargeBlacklist' => true, ], 'interface-admin' => [ - 'MinimalPasswordLength' => 8, + 'MinimalPasswordLength' => 10, 'MinimumPasswordLengthToLogin' => 1, 'PasswordCannotMatchUsername' => true, 'PasswordCannotBePopular' => 25, 'PasswordNotInLargeBlacklist' => true, ], 'bot' => [ - 'MinimalPasswordLength' => 8, + 'MinimalPasswordLength' => 10, 'MinimumPasswordLengthToLogin' => 1, 'PasswordCannotMatchUsername' => true, 'PasswordNotInLargeBlacklist' => true, @@ -4975,6 +4975,10 @@ $wgAutoblockExpiry = 86400; /** * Set this to true to allow blocked users to edit their own user talk page. + * + * This only applies to sitewide blocks. Partial blocks always allow users to + * edit their own user talk page unless otherwise specified in the block + * restrictions. */ $wgBlockAllowsUTEdit = true;