From: Aaron Schulz Date: Fri, 22 Jun 2007 02:08:22 +0000 (+0000) Subject: *Increase RC prune change to 1/100 X-Git-Tag: 1.31.0-rc.0~52460 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=79327401d7eb06bcec9ee8bff3c7f6347a1eb059;p=lhc%2Fweb%2Fwiklou.git *Increase RC prune change to 1/100 --- 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;