From 3fecd94523c0e8f6871fdc7ae715436cedbffde7 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Fri, 18 Sep 2015 15:19:54 -0700 Subject: [PATCH] =?utf8?q?Fixed=20small=20IDE=20error=20in=20=C2=96syncFil?= =?utf8?q?eBackend.php?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Change-Id: I86c6cf73470109af2eb88d1c0d053292391630e7 --- maintenance/syncFileBackend.php | 1 + 1 file changed, 1 insertion(+) diff --git a/maintenance/syncFileBackend.php b/maintenance/syncFileBackend.php index 14a1502f8a..63d5e9f889 100644 --- a/maintenance/syncFileBackend.php +++ b/maintenance/syncFileBackend.php @@ -159,6 +159,7 @@ class SyncFileBackend extends Maintenance { $this->error( "Error: given starting ID greater than ending ID.", 1 ); } + $next = null; do { $limit = min( $this->mBatchSize, $end - $start + 1 ); // don't go pass ending ID $this->output( "Doing id $start to " . ( $start + $limit - 1 ) . "...\n" ); -- 2.20.1