From ed736e69d0732340d7f0bfa6b2150b524d57db5a Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 3 Dec 2003 15:18:38 +0000 Subject: [PATCH] Raise watchlist cutoff to 12 hours for 1000+ items --- includes/SpecialWatchlist.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 7ec0fdd297..23a55af057 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -49,10 +49,10 @@ function wfSpecialWatchlist() } if ( ! isset( $days ) ) { - $big = 250; + $big = 1000; if($nitems > $big) { # Set default cutoff shorter - $days = (1.0 / 24.0); # 1 hour... + $days = (12.0 / 24.0); # 12 hours... } else { $days = 0; # no time cutoff for shortlisters } -- 2.20.1