From d5cf69f8fa69f19467db1238477ab81bb53d3232 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Sat, 11 May 2013 00:48:48 -0700 Subject: [PATCH] Added missing continue to avoid fatal error. Change-Id: Ibb87c9e59e424fa84d662bb42349085d186dcc99 --- maintenance/copyFileBackend.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/maintenance/copyFileBackend.php b/maintenance/copyFileBackend.php index 736910a80c..685c868f55 100644 --- a/maintenance/copyFileBackend.php +++ b/maintenance/copyFileBackend.php @@ -190,7 +190,8 @@ class CopyFileBackend extends Maintenance { : $src->getLocalReference( array( 'src' => $srcPath, 'latest' => 1 ) ); if ( !$fsFile ) { if ( $src->fileExists( array( 'src' => $srcPath ) ) === false ) { - $this->error( "File '$srcPath' was listed be must have been deleted." ); + $this->error( "File '$srcPath' was listed but must have been deleted." ); + continue; } else { $this->error( "Could not get local copy of $srcPath." ); } -- 2.20.1