From 9185907df886ecca621e27d51bf74ad9ca4446cb Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Fri, 5 Dec 2003 04:46:43 +0000 Subject: [PATCH] 3-day default cutoff for shortlisters. FIXME: make this configurable? --- includes/SpecialWatchlist.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialWatchlist.php b/includes/SpecialWatchlist.php index 23a55af057..d45734834f 100644 --- a/includes/SpecialWatchlist.php +++ b/includes/SpecialWatchlist.php @@ -54,7 +54,7 @@ function wfSpecialWatchlist() # Set default cutoff shorter $days = (12.0 / 24.0); # 12 hours... } else { - $days = 0; # no time cutoff for shortlisters + $days = 3; # longer cutoff for shortlisters } } else { $days = floatval($days); -- 2.20.1