From 2e352fe13d99f42d6732875ebc00d23324f5a57c Mon Sep 17 00:00:00 2001 From: kaldari Date: Tue, 9 Jan 2018 00:15:14 -0800 Subject: [PATCH] Change default of $wgLogAutopatrol from true to false "$wgLogAutopatrol = true" basically just spams the logging table and isn't useful in most cases (or ever?) Bug: T184485 Change-Id: I418cc2fcc7017e5d2cbc0c6159b4c459b9c77ac7 --- RELEASE-NOTES-1.31 | 3 +++ includes/DefaultSettings.php | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.31 b/RELEASE-NOTES-1.31 index ad4f1b1930..23afa4ffb6 100644 --- a/RELEASE-NOTES-1.31 +++ b/RELEASE-NOTES-1.31 @@ -31,6 +31,7 @@ production. * (T188472) The 'comma' value for $wgArticleCountMethod is no longer supported for performance reasons, and installations with this setting will now work as if it was configured with 'any'. +* $wgLogAutopatrol now defaults to false instead of true. === New features in 1.31 === * (T76554) User sub-pages named ….json are now protected in the same way that ….js @@ -76,6 +77,8 @@ production. * (T189785) Added a monthly heartbeat ping to the pingback feature. * The CLI installer (maintenance/install.php) learned to detect and include extensions. Pass --with-extensions to enable that feature. +* (T184791) rc_patrolled now has three states: "0" for unpatrolled, + "1" for manually patrolled and "2" for autopatrolled actions. === External library changes in 1.31 === diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 81d3c35d29..c000098302 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -6869,8 +6869,11 @@ $wgUseFilePatrol = true; /** * Log autopatrol actions to the log table + * The default used to be true before 1.31 + * + * @since 1.22 */ -$wgLogAutopatrol = true; +$wgLogAutopatrol = false; /** * Provide syndication feeds (RSS, Atom) for, e.g., Recentchanges, Newpages -- 2.20.1