diff options
author | cash <cash.costello@gmail.com> | 2011-07-04 12:01:31 -0400 |
---|---|---|
committer | cash <cash.costello@gmail.com> | 2011-07-04 12:01:31 -0400 |
commit | e88f0a18cf7ad7a029b8c8ba6affdae6f9e079a9 (patch) | |
tree | b50283670fa6ed1e6db75191933fe0c5e700129b /views/default/output/date.php | |
parent | de111da23258cd2b513c8f4ab84712ee50272b23 (diff) | |
download | elgg-e88f0a18cf7ad7a029b8c8ba6affdae6f9e079a9.tar.gz elgg-e88f0a18cf7ad7a029b8c8ba6affdae6f9e079a9.tar.bz2 |
Fixes #3560 input/date and output/date support ISO 8601 (YYYY-MM-DD) and Unix timestamps. Need to think about how to handle alternate text formats.
Diffstat (limited to 'views/default/output/date.php')
-rw-r--r-- | views/default/output/date.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/views/default/output/date.php b/views/default/output/date.php index fda7668e7..7c98dddc9 100644 --- a/views/default/output/date.php +++ b/views/default/output/date.php @@ -6,10 +6,12 @@ * @package Elgg * @subpackage Core * - * @uses $vars['value'] A UNIX epoch timestamp - * + * @uses $vars['value'] Date as text or a Unix timestamp in seconds */ -if ($vars['value'] > 86400) { - echo date("n/d/Y", $vars['value']); -}
\ No newline at end of file +// convert timestamps to text for display +if (is_numeric($vars['value'])) { + $vars['value'] = gmdate('Y/m/d', $vars['value']); +} + +echo $vars['value']; |