From: Brian Wolff Date: Wed, 9 May 2018 20:43:51 +0000 (+0000) Subject: Add default edit rate limit of 90 edits/minute for all users X-Git-Tag: 1.31.0-rc.1~11 X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=commitdiff_plain;h=df0fe79fcbe089d654163b598aca63d0ae39c645 Add default edit rate limit of 90 edits/minute for all users Previously there was no rate limit at all if you were autoconfirmed. This initial setting is set on the high end of things, we may adjust later. See also T192668, T194204. Change-Id: I7cb002900bae2da3f4f4758671186659c1720e1d (cherry picked from commit cefdcefdb8f15ffdec8345b93aff2036db92d1f7) --- diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index 52e6c4f827..abe8e7829c 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -51,6 +51,7 @@ production. framework that it enables. Some extensions mistakenly used this to check whether any AJAX functionality at all should be enabled, further making this problematic to retain. +* Add default edit rate limit of 90 edits/minute for all users. === New features in 1.31 === * (T76554) User sub-pages named ….json are now protected in the same way that diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 004a70e1e2..ed88859d7e 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -5652,6 +5652,7 @@ $wgRateLimits = [ 'edit' => [ 'ip' => [ 8, 60 ], 'newbie' => [ 8, 60 ], + 'user' => [ 90, 60 ], ], // Page moves 'move' => [