mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-23 22:10: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(
|
||||
pht(
|
||||
'%d older comments are hidden. ',
|
||||
number_format(count($hidden))),
|
||||
'%s older comments are hidden.',
|
||||
new PhutilNumber(count($hidden))),
|
||||
' ',
|
||||
javelin_tag(
|
||||
'a',
|
||||
array(
|
||||
|
|
Loading…
Reference in a new issue