1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-18 18:51:12 +01:00

Rename the _phutil_date_format function for consistency

Summary: Ref T5655. Depends on D11188.

Test Plan: `grep`

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T5655

Differential Revision: https://secure.phabricator.com/D11189
This commit is contained in:
Joshua Spence 2015-01-05 06:37:48 +11:00
parent 78f5253964
commit 02710ee779

View file

@ -4,7 +4,7 @@ function phabricator_date($epoch, PhabricatorUser $user) {
return phabricator_format_local_time(
$epoch,
$user,
_phutil_date_format($epoch));
phutil_date_format($epoch));
}
function phabricator_on_relative_date($epoch, $user) {
@ -46,7 +46,7 @@ function phabricator_datetime($epoch, $user) {
$epoch,
$user,
pht('%s, %s',
_phutil_date_format($epoch),
phutil_date_format($epoch),
phabricator_time_format($user)));
}