mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-26 00:29:18 +01:00
Add date to starttime & endtime for multi-day events
This commit is contained in:
parent
e5bb02d799
commit
267241e149
@ -162,7 +162,7 @@ class calendar_merge extends bo_merge
|
|||||||
foreach(array(
|
foreach(array(
|
||||||
'date' => $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'],
|
'date' => $GLOBALS['egw_info']['user']['preferences']['common']['dateformat'],
|
||||||
'day' => 'l',
|
'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)
|
) as $name => $format)
|
||||||
{
|
{
|
||||||
$value = date($format,$event[$what]);
|
$value = date($format,$event[$what]);
|
||||||
|
Loading…
Reference in New Issue
Block a user