mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-24 22:40:55 +01:00
Use PhutilNumber instead of number_format()
Summary: Also convert to `phutil_tag()`. Test Plan: Displayed revision with hidden comments. Reviewers: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D4772
This commit is contained in:
parent
7f43826854
commit
b7e10831a6
1 changed files with 3 additions and 2 deletions
|
@ -171,8 +171,9 @@ final class DifferentialRevisionCommentListView extends AphrontView {
|
||||||
),
|
),
|
||||||
array(
|
array(
|
||||||
pht(
|
pht(
|
||||||
'%d older comments are hidden. ',
|
'%s older comments are hidden.',
|
||||||
number_format(count($hidden))),
|
new PhutilNumber(count($hidden))),
|
||||||
|
' ',
|
||||||
javelin_tag(
|
javelin_tag(
|
||||||
'a',
|
'a',
|
||||||
array(
|
array(
|
||||||
|
|
Loading…
Reference in a new issue