From 79327401d7eb06bcec9ee8bff3c7f6347a1eb059 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 22 Jun 2007 02:08:22 +0000 Subject: [PATCH] *Increase RC prune change to 1/100 --- includes/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Article.php b/includes/Article.php index 286e97fdd5..b4eab7bfde 100644 --- a/includes/Article.php +++ b/includes/Article.php @@ -2317,7 +2317,7 @@ class Article { if ( wfRunHooks( 'ArticleEditUpdatesDeleteFromRecentchanges', array( &$this ) ) ) { wfSeedRandom(); - if ( 0 == mt_rand( 0, 999 ) ) { + if ( 0 == mt_rand( 0, 99 ) ) { # Periodically flush old entries from the recentchanges table. global $wgRCMaxAge; -- 2.20.1