diff options
author | Friendika <info@friendika.com> | 2011-06-30 23:27:16 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-06-30 23:27:16 -0700 |
commit | 6e5532149a08b264e958202fa971d35b446fac3b (patch) | |
tree | e44da23d0fbbba7846fbdeeaf7abcbc7390d13e3 | |
parent | 086dc25dd1d3e4bb23444948a508aa0c8ee03dc5 (diff) | |
download | volse-hubzilla-6e5532149a08b264e958202fa971d35b446fac3b.tar.gz volse-hubzilla-6e5532149a08b264e958202fa971d35b446fac3b.tar.bz2 volse-hubzilla-6e5532149a08b264e958202fa971d35b446fac3b.zip |
missing minutes in event listings
-rw-r--r-- | include/event.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/event.php b/include/event.php index 1032022b3..aab195d24 100644 --- a/include/event.php +++ b/include/event.php @@ -8,7 +8,7 @@ function format_event_html($ev) { if(! ((is_array($ev)) && count($ev))) return ''; - $bd_format = t('l F d, Y \@ g A') ; // Friday January 18, 2011 @ 8 AM + $bd_format = t('l F d, Y \@ g:i A') ; // Friday January 18, 2011 @ 8 AM $o = '<div class="vevent">' . "\r\n"; |