From bd381e3e533ade40a02b58a0eaf9286e74cd2e51 Mon Sep 17 00:00:00 2001 From: Huji Date: Thu, 17 Jul 2008 12:01:29 +0000 Subject: [PATCH] Counts should be shown using localized digits, just as totals do. --- includes/CategoryPage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ) ); } } -- 2.20.1