From 1f96460df2443047fd4423dffd6a1deed5c9d49c Mon Sep 17 00:00:00 2001 From: Reedy Date: Sat, 7 Apr 2012 21:48:40 +0100 Subject: [PATCH] Fix variable collision Change-Id: I28b22bd8aad30ef0323cdc897dce1de9849b1b87 --- maintenance/storage/checkStorage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maintenance/storage/checkStorage.php b/maintenance/storage/checkStorage.php index af1f9ee21d..5887a7554a 100644 --- a/maintenance/storage/checkStorage.php +++ b/maintenance/storage/checkStorage.php @@ -381,8 +381,8 @@ class CheckStorage { $extDb->freeResult( $res ); // Print errors for missing blobs rows - foreach ( $oldIds as $blobId => $oldIds ) { - $this->error( 'restore text', "Error: missing target $cluster/$blobId for two-part ES URL", $oldIds ); + foreach ( $oldIds as $blobId => $oldIds2 ) { + $this->error( 'restore text', "Error: missing target $cluster/$blobId for two-part ES URL", $oldIds2 ); } } } -- 2.20.1