From db9ebea5ac2a61621cffd0aa48865164240dc21f Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Tue, 3 Dec 2013 15:00:43 +0100 Subject: [PATCH] Remove unused local variable Change-Id: I5f13b3bf7e769d0b0960b44e15b9c2454d9eb165 --- includes/cache/BacklinkCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ); -- 2.20.1