From: Aaron Schulz Date: Sat, 11 May 2013 07:48:48 +0000 (-0700) Subject: Added missing continue to avoid fatal error. X-Git-Tag: 1.31.0-rc.0~19698 X-Git-Url: http://git.cyclocoop.org/%27.generer_url_ecrire%28%27admin_couteau_suisse%27%2C%27cmd=descrip&outil=boites_privees?a=commitdiff_plain;h=d5cf69f8fa69f19467db1238477ab81bb53d3232;p=lhc%2Fweb%2Fwiklou.git Added missing continue to avoid fatal error. Change-Id: Ibb87c9e59e424fa84d662bb42349085d186dcc99 --- 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." ); }