From: Huji Date: Thu, 17 Jul 2008 12:01:29 +0000 (+0000) Subject: Counts should be shown using localized digits, just as totals do. X-Git-Tag: 1.31.0-rc.0~46474 X-Git-Url: http://git.cyclocoop.org/%40spipnet%40?a=commitdiff_plain;h=bd381e3e533ade40a02b58a0eaf9286e74cd2e51;p=lhc%2Fweb%2Fwiklou.git Counts should be shown using localized digits, just as totals do. --- diff --git a/includes/CategoryPage.php b/includes/CategoryPage.php index bf1e7d4e67..92e4e27923 100644 --- a/includes/CategoryPage.php +++ b/includes/CategoryPage.php @@ -507,7 +507,7 @@ class CategoryViewer { return wfMsgExt("category-$type-count-limited", 'parse', $wgLang->formatNum( $rescnt ) ); } - return wfMsgExt( "category-$type-count", 'parse', $rescnt, + return wfMsgExt( "category-$type-count", 'parse', $wgLang->formatNum( $rescnt ), $wgLang->formatNum( $totalcnt ) ); } }