Index: trunk/phase3/includes/SiteStats.php |
— | — | @@ -118,9 +118,9 @@ |
119 | 119 | private static function isSane( $row ) { |
120 | 120 | if( |
121 | 121 | $row === false |
122 | | - or $row->ss_good_articles < $row->ss_total_pages |
123 | | - or $row->ss_total_edits < $row->ss_total_pages |
124 | | - or $row->ss_users < $row->ss_admins |
| 122 | + or $row->ss_total_pages < $row->ss_good_articles |
| 123 | + or $row->ss_total_edits < $row->ss_total_pages |
| 124 | + or $row->ss_users < $row->ss_admins |
125 | 125 | ) { |
126 | 126 | return false; |
127 | 127 | } |