aboutsummaryrefslogtreecommitdiff
path: root/views/default/output/calendar.php
diff options
context:
space:
mode:
authorewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-05 06:23:18 +0000
committerewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-05 06:23:18 +0000
commit5d9f88a89ac15608edbc1f7076409108368c6028 (patch)
tree05483704ca0cff2b771621d40732039ce22bd54e /views/default/output/calendar.php
parent9791ab58670f07eae1dfe7f6f96150872bfff435 (diff)
downloadelgg-5d9f88a89ac15608edbc1f7076409108368c6028.tar.gz
elgg-5d9f88a89ac15608edbc1f7076409108368c6028.tar.bz2
Fixes #2321: Deprecated input/datepicker and output/calendar in favor of input/date and output/date
git-svn-id: http://code.elgg.org/elgg/trunk@8582 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'views/default/output/calendar.php')
-rw-r--r--views/default/output/calendar.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/views/default/output/calendar.php b/views/default/output/calendar.php
index 8729fa1c5..fa0bd0c04 100644
--- a/views/default/output/calendar.php
+++ b/views/default/output/calendar.php
@@ -9,9 +9,5 @@
* @uses $vars['value'] The current value, if any
*
*/
-
-if (is_int($vars['value'])) {
- echo date("F j, Y", $vars['value']);
-} else {
- echo htmlspecialchars($vars['value'], ENT_QUOTES, 'UTF-8');
-} \ No newline at end of file
+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