Remove unused local variable
authorSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 3 Dec 2013 14:00:43 +0000 (15:00 +0100)
committerSiebrand Mazeland <s.mazeland@xs4all.nl>
Tue, 3 Dec 2013 14:01:07 +0000 (15:01 +0100)
Change-Id: I5f13b3bf7e769d0b0960b44e15b9c2454d9eb165

includes/cache/BacklinkCache.php

index 686361b..2362564 100644 (file)
@@ -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 );