Use formatNum for another number
authorRaimond Spekking <raymond@users.mediawiki.org>
Tue, 12 Aug 2008 13:19:28 +0000 (13:19 +0000)
committerRaimond Spekking <raymond@users.mediawiki.org>
Tue, 12 Aug 2008 13:19:28 +0000 (13:19 +0000)
includes/ChangesList.php

index c25b4a5..bad9445 100644 (file)
@@ -587,7 +587,7 @@ class EnhancedChangesList extends ChangesList {
                        $text = $userlink;
                        $text .= $wgContLang->getDirMark();
                        if( $count > 1 ) {
-                               $text .= ' ('.$count.'&times;)';
+                               $text .= ' (' . $wgLang->formatNum( $count ) . '×)';
                        }
                        array_push( $users, $text );
                }