Commit b7ba27fb by pupi1985

Replaced all number_format in pages/tags.php

parent a9d6148e
...@@ -60,7 +60,7 @@ ...@@ -60,7 +60,7 @@
foreach ($populartags as $word => $count) { foreach ($populartags as $word => $count) {
$qa_content['ranking']['items'][] = array( $qa_content['ranking']['items'][] = array(
'label' => qa_tag_html($word, false, @$favoritemap['tag'][qa_strtolower($word)]), 'label' => qa_tag_html($word, false, @$favoritemap['tag'][qa_strtolower($word)]),
'count' => number_format($count), 'count' => qa_format_number($count),
); );
if ((++$output) >= $pagesize) if ((++$output) >= $pagesize)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment