Change default of $wgLogAutopatrol from true to false
authorkaldari <kaldari@gmail.com>
Tue, 9 Jan 2018 08:15:14 +0000 (00:15 -0800)
committerAmir Sarabadani <ladsgroup@gmail.com>
Thu, 5 Apr 2018 11:38:54 +0000 (13:38 +0200)
"$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
includes/DefaultSettings.php

index ad4f1b1..23afa4f 100644 (file)
@@ -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 ===
 
index 81d3c35..c000098 100644 (file)
@@ -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