From: Aaron Schulz Date: Tue, 24 May 2016 09:55:16 +0000 (-0700) Subject: filerepo: Add missing quote back to LocalFileLockError message X-Git-Tag: 1.31.0-rc.0~6828^2 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=a019722c9855402978aa875f896b186d2754b0f3;p=lhc%2Fweb%2Fwiklou.git filerepo: Add missing quote back to LocalFileLockError message Follows-up e724d14495. Change-Id: I48e304a307d3c0427f797a382dc23347bb7e914f --- diff --git a/includes/filerepo/file/LocalFile.php b/includes/filerepo/file/LocalFile.php index 20fec24669..c7670785b2 100644 --- a/includes/filerepo/file/LocalFile.php +++ b/includes/filerepo/file/LocalFile.php @@ -1928,7 +1928,7 @@ class LocalFile extends File { $dbw->rollback( __METHOD__ ); } throw new LocalFileLockError( - "Could not acquire lock for '{$this->getName()} ($waited sec): " . + "Could not acquire lock for '{$this->getName()}' ($waited sec): " . $status->getWikiText( false, false, 'en' ) ); }