From e35a3809418d82fe9cff51a03d772fae1795c802 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Fri, 8 Jul 2011 22:15:29 +0000 Subject: [PATCH] Wow major typo, r91763 --- maintenance/cleanupTable.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/maintenance/cleanupTable.inc b/maintenance/cleanupTable.inc index 60f234602e..f63c6d743c 100644 --- a/maintenance/cleanupTable.inc +++ b/maintenance/cleanupTable.inc @@ -102,7 +102,7 @@ class TableCleanup extends Maintenance { $table = $params['table']; // count(*) would melt the DB for huge tables, we can estimate here - $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); + $count = $dbr->estimateRowCount( $table, '*', '', __METHOD__ ); $this->init( $count, $table ); $this->output( "Processing $table...\n" ); -- 2.20.1