From: pmolina Date: Sat, 2 Jun 2012 15:06:48 +0000 (-0300) Subject: (bug 37182) Removed hard coded parentheses in SpecialStatistics.php X-Git-Tag: 1.31.0-rc.0~23429^2 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/ajouter.php?a=commitdiff_plain;h=86d740f81c7a6ec6c356d237652b80b1df2b0463;p=lhc%2Fweb%2Fwiklou.git (bug 37182) Removed hard coded parentheses in SpecialStatistics.php Change-Id: Ie412b21a0426e5aaf9c1cf55aa91ab16fd1c0662 --- diff --git a/includes/specials/SpecialStatistics.php b/includes/specials/SpecialStatistics.php index da8f786bb0..46881ec48f 100644 --- a/includes/specials/SpecialStatistics.php +++ b/includes/specials/SpecialStatistics.php @@ -118,9 +118,9 @@ class SpecialStatistics extends SpecialPage { if( $descMsg ) { $msg = $this->msg( $descMsg, $descMsgParam ); if ( $msg->exists() ) { - $descriptionText = $msg->parse(); + $descriptionText = $this->msg( 'parentheses' )->rawParams( $msg->parse() )->escaped(); $text .= "
" . Xml::element( 'small', array( 'class' => 'mw-statistic-desc'), - " ($descriptionText)" ); + " $descriptionText" ); } } return Html::rawElement( 'tr', $trExtraParams,