diff options
Diffstat (limited to 'maintenance/storage')
-rw-r--r-- | maintenance/storage/checkStorage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintenance/storage/checkStorage.php b/maintenance/storage/checkStorage.php index d991551d105a..e0b4e803e2e0 100644 --- a/maintenance/storage/checkStorage.php +++ b/maintenance/storage/checkStorage.php @@ -145,7 +145,7 @@ class CheckStorage { $this->error( 'restore text', "Error: invalid URL \"{$row->old_text}\"", $row->old_id ); continue; } - list( $proto, $path ) = $urlParts; + list( $proto, ) = $urlParts; if ( $proto != 'DB' ) { $this->error( 'restore text', "Error: invalid external protocol \"$proto\"", $row->old_id ); continue; |