diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-05 06:23:18 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2011-03-05 06:23:18 +0000 |
commit | 5d9f88a89ac15608edbc1f7076409108368c6028 (patch) | |
tree | 05483704ca0cff2b771621d40732039ce22bd54e /views/default/output/date.php | |
parent | 9791ab58670f07eae1dfe7f6f96150872bfff435 (diff) | |
download | elgg-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/date.php')
-rw-r--r-- | views/default/output/date.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/default/output/date.php b/views/default/output/date.php index bd8a65714..fda7668e7 100644 --- a/views/default/output/date.php +++ b/views/default/output/date.php @@ -11,5 +11,5 @@ */ if ($vars['value'] > 86400) { - echo date("F j, Y",$vars['value']); + echo date("n/d/Y", $vars['value']); }
\ No newline at end of file |