forked from extern/egroupware
Fix merged dates from the event list were not timestamps, and could not be formatted
This commit is contained in:
parent
262d8d6440
commit
d5cceaf7d6
@ -220,7 +220,7 @@ class calendar_merge extends bo_merge
|
||||
'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]);
|
||||
$value = egw_time::to($event[$what],$format);
|
||||
if ($format == 'l') $value = lang($value);
|
||||
$replacements['$$' .($prefix ? $prefix.'/':'').'calendar_'.$what.$name.'$$'] = $value;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user