diff options
Diffstat (limited to 'views/default/output/date.php')
-rw-r--r-- | views/default/output/date.php | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/views/default/output/date.php b/views/default/output/date.php index 6973a6c92..d4fba97a0 100644 --- a/views/default/output/date.php +++ b/views/default/output/date.php @@ -1,21 +1,21 @@ -<?php
-
- /**
- * Date
- * Displays a properly formatted date
- *
- * @package Elgg
- * @subpackage Core
+<?php - * @author Curverider Ltd
+ /** + * Date + * Displays a properly formatted date + * + * @package Elgg + * @subpackage Core - * @link http://elgg.org/
- *
- * @uses $vars['value'] A UNIX epoch timestamp
- *
- */
-
- if ($vars['value'] > 86400) {
- echo date("F j, Y",$vars['value']);
- }
+ * @author Curverider Ltd + + * @link http://elgg.org/ + * + * @uses $vars['value'] A UNIX epoch timestamp + * + */ + + if ($vars['value'] > 86400) { + echo date("F j, Y",$vars['value']); + } ?>
\ No newline at end of file |