From: Aaron Schulz Date: Fri, 18 Sep 2015 22:19:54 +0000 (-0700) Subject: Fixed small IDE error in –syncFileBackend.php X-Git-Tag: 1.31.0-rc.0~9961 X-Git-Url: http://git.cyclocoop.org/%22.%24h.%22?a=commitdiff_plain;h=3fecd94523c0e8f6871fdc7ae715436cedbffde7;p=lhc%2Fweb%2Fwiklou.git Fixed small IDE error in –syncFileBackend.php Change-Id: I86c6cf73470109af2eb88d1c0d053292391630e7 --- 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" );