Add date to starttime & endtime for multi-day events

This commit is contained in:
Nathan Gray 2011-03-28 16:24:36 +00:00
parent e5bb02d799
commit 267241e149

View File

@ -162,7 +162,7 @@ class calendar_merge extends bo_merge
foreach(array(
'date' => $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'],
'day' => 'l',
'time' => $GLOBALS['egw_info']['user']['preferences']['common']['timeformat'] == 12 ? 'h:i a' : 'H:i',
'time' => (date('Ymd',$event['start']) != date('Ymd',$event['end']) ? $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'].' ' : '') . ($GLOBALS['egw_info']['user']['preferences']['common']['timeformat'] == 12 ? 'h:i a' : 'H:i'),
) as $name => $format)
{
$value = date($format,$event[$what]);