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:
parent
78f5253964
commit
02710ee779
|
@ -4,7 +4,7 @@ function phabricator_date($epoch, PhabricatorUser $user) {
|
||||||
return phabricator_format_local_time(
|
return phabricator_format_local_time(
|
||||||
$epoch,
|
$epoch,
|
||||||
$user,
|
$user,
|
||||||
_phutil_date_format($epoch));
|
phutil_date_format($epoch));
|
||||||
}
|
}
|
||||||
|
|
||||||
function phabricator_on_relative_date($epoch, $user) {
|
function phabricator_on_relative_date($epoch, $user) {
|
||||||
|
@ -46,7 +46,7 @@ function phabricator_datetime($epoch, $user) {
|
||||||
$epoch,
|
$epoch,
|
||||||
$user,
|
$user,
|
||||||
pht('%s, %s',
|
pht('%s, %s',
|
||||||
_phutil_date_format($epoch),
|
phutil_date_format($epoch),
|
||||||
phabricator_time_format($user)));
|
phabricator_time_format($user)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue