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
This commit is contained in:
parent
41b2cb25bd
commit
2e352fe13d
2 changed files with 7 additions and 1 deletions
|
|
@ -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 ===
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue