From f24985e6c270b1c4b9d27844552dd3f72189d09b Mon Sep 17 00:00:00 2001 From: Nemo bis Date: Fri, 7 Nov 2014 13:15:28 +0100 Subject: [PATCH] Condition match: comment says 10k, code 1k Change-Id: Ia8cf3510a19315cd6b9610d972703a46c8eea9ef --- AbuseFilter.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AbuseFilter.class.php b/AbuseFilter.class.php index bb94e6d53..bfd4db264 100644 --- a/AbuseFilter.class.php +++ b/AbuseFilter.class.php @@ -1585,7 +1585,7 @@ class AbuseFilter { $storage_period = self::$statsStoragePeriod; if ( !$total || $total > 10000 ) { - // This is for if the total doesn't exist, or has gone past 1000. + // This is for if the total doesn't exist, or has gone past 10,000. // Recreate all the keys at the same time, so they expire together. $wgMemc->set( $total_key, 0, $storage_period ); $wgMemc->set( $overflow_key, 0, $storage_period );