From 874f5f7f0a959f09c43c5408e04d20bce4a426b5 Mon Sep 17 00:00:00 2001 From: "James D. Forrester" Date: Tue, 10 Jul 2018 16:08:58 -0700 Subject: [PATCH] Expand the default watchlist time from 3 to 7 days Bug: T194414 Change-Id: I682161b93ea018dc1f552b6ac1a0555c162e7339 --- RELEASE-NOTES-1.32 | 1 + includes/DefaultSettings.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/RELEASE-NOTES-1.32 b/RELEASE-NOTES-1.32 index 2b37f5ecd2..179e9700b3 100644 --- a/RELEASE-NOTES-1.32 +++ b/RELEASE-NOTES-1.32 @@ -28,6 +28,7 @@ production. be blocked. * The archive table's ar_rev_id field is now unique. * Special:BotPasswords now requires reauthentication. +* (T194414) The default watchlist view time has been increased from 3 to 7 days. === New features in 1.32 === * (T112474) Generalized the ResourceLoader mechanism for overriding modules diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index 2fa3b7281a..26428842f9 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -4865,7 +4865,7 @@ $wgDefaultUserOptions = [ 'watchdefault' => 1, 'watchdeletion' => 0, 'watchuploads' => 1, - 'watchlistdays' => 3.0, + 'watchlistdays' => 7.0, 'watchlisthideanons' => 0, 'watchlisthidebots' => 0, 'watchlisthideliu' => 0, -- 2.20.1