diff options
Diffstat (limited to 'views/default/output/calendar.php')
| -rw-r--r-- | views/default/output/calendar.php | 35 |
1 files changed, 12 insertions, 23 deletions
diff --git a/views/default/output/calendar.php b/views/default/output/calendar.php index 0c94086bb..fa0bd0c04 100644 --- a/views/default/output/calendar.php +++ b/views/default/output/calendar.php @@ -1,24 +1,13 @@ <?php -
- /**
- * Elgg calendar output
- * Displays a calendar output field
- *
- * @package Elgg
- * @subpackage Core
- * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
- * @author Curverider Ltd
- * @copyright Curverider Ltd 2008
- * @link http://elgg.org/
- *
- * @uses $vars['value'] The current value, if any
- *
- */
- - if (is_int($vars['value'])) { - echo date("F j, Y", $vars['value']); - } else { - echo $vars['value']; - } - -?>
\ No newline at end of file +/** + * Elgg calendar output + * Displays a calendar output field + * + * @package Elgg + * @subpackage Core + * + * @uses $vars['value'] The current value, if any + * + */ +elgg_deprecated_notice('output/calendar was deprecated in favor of output/date', 1.8); +echo elgg_view('output/date', $vars);
\ No newline at end of file |
