From: Raimond Spekking Date: Tue, 12 Aug 2008 13:19:28 +0000 (+0000) Subject: Use formatNum for another number X-Git-Tag: 1.31.0-rc.0~45937 X-Git-Url: http://git.cyclocoop.org/%7B%24admin_url%7Dcompta/comptes/journal.php?a=commitdiff_plain;h=d50452faa86c1fc093e93138c5f866876adec19a;p=lhc%2Fweb%2Fwiklou.git Use formatNum for another number --- diff --git a/includes/ChangesList.php b/includes/ChangesList.php index c25b4a58da..bad9445a01 100644 --- a/includes/ChangesList.php +++ b/includes/ChangesList.php @@ -587,7 +587,7 @@ class EnhancedChangesList extends ChangesList { $text = $userlink; $text .= $wgContLang->getDirMark(); if( $count > 1 ) { - $text .= ' ('.$count.'×)'; + $text .= ' (' . $wgLang->formatNum( $count ) . '×)'; } array_push( $users, $text ); }