From 89599420248f2492fa3331841aefac48fce26fb3 Mon Sep 17 00:00:00 2001 From: Aryeh Gregor Date: Mon, 16 Jul 2007 20:01:54 +0000 Subject: [PATCH] Whoops, reversed inequality. Forgot to check whether this is being run *too* often. --- includes/SiteStats.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/SiteStats.php b/includes/SiteStats.php index 086e2b6e21..cbb075a2ae 100644 --- a/includes/SiteStats.php +++ b/includes/SiteStats.php @@ -118,9 +118,9 @@ class SiteStats { private static function isSane( $row ) { if( $row === false - or $row->ss_good_articles < $row->ss_total_pages - or $row->ss_total_edits < $row->ss_total_pages - or $row->ss_users < $row->ss_admins + or $row->ss_total_pages < $row->ss_good_articles + or $row->ss_total_edits < $row->ss_total_pages + or $row->ss_users < $row->ss_admins ) { return false; } -- 2.20.1