From: kaldari Date: Tue, 9 Jan 2018 08:15:14 +0000 (-0800) Subject: Change default of $wgLogAutopatrol from true to false X-Git-Tag: 1.31.0-rc.0~193^2 X-Git-Url: http://git.cyclocoop.org/%24dirpuce/puce%24spip_lang_rtl.gif?a=commitdiff_plain;h=2e352fe13d99f42d6732875ebc00d23324f5a57c;p=lhc%2Fweb%2Fwiklou.git 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 --- 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