From: Siebrand Mazeland Date: Tue, 3 Dec 2013 14:00:43 +0000 (+0100) Subject: Remove unused local variable X-Git-Tag: 1.31.0-rc.0~17816^2 X-Git-Url: http://git.cyclocoop.org/%28?a=commitdiff_plain;h=db9ebea5ac2a61621cffd0aa48865164240dc21f;p=lhc%2Fweb%2Fwiklou.git Remove unused local variable Change-Id: I5f13b3bf7e769d0b0960b44e15b9c2454d9eb165 --- diff --git a/includes/cache/BacklinkCache.php b/includes/cache/BacklinkCache.php index 686361b20c..2362564a7f 100644 --- a/includes/cache/BacklinkCache.php +++ b/includes/cache/BacklinkCache.php @@ -426,7 +426,7 @@ class BacklinkCache { $cacheEntry['numRows'] += $partitions['numRows']; $cacheEntry['batches'] = array_merge( $cacheEntry['batches'], $partitions['batches'] ); if ( count( $partitions['batches'] ) ) { - list( $lStart, $lEnd ) = end( $partitions['batches'] ); + list( , $lEnd ) = end( $partitions['batches'] ); $start = $lEnd + 1; // pick up after this inclusive range } } while ( $partitions['numRows'] >= $selectSize );