From: Liangent Date: Tue, 29 May 2012 08:03:59 +0000 (+0800) Subject: (bug 37186) Remove hard coded parentheses in ImagePage.php X-Git-Tag: 1.31.0-rc.0~23478 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=22b00ec69d2ab7d20b959c0eaee5fd88f9cde792;p=lhc%2Fweb%2Fwiklou.git (bug 37186) Remove hard coded parentheses in ImagePage.php Change-Id: Ib516e501953f37a69707a5de3e2ed96004760caa --- diff --git a/includes/ImagePage.php b/includes/ImagePage.php index 3aeb70afe8..22984a5166 100644 --- a/includes/ImagePage.php +++ b/includes/ImagePage.php @@ -1099,7 +1099,10 @@ class ImageHistoryList extends ContextSource { // Image dimensions + size $row .= ''; $row .= htmlspecialchars( $file->getDimensionsString() ); - $row .= ' (' . Linker::formatSize( $file->getSize() ) . ')'; + $row .= $this->getContext()->msg( 'word-separator' )->plain(); + $row .= ''; + $row .= $this->getContext()->msg( 'parentheses' )->rawParams( Linker::formatSize( $file->getSize() ) )->plain(); + $row .= ''; $row .= ''; // Uploading user