mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
remove duration check of 86400, as it fails over daylight saving changes and more then one day
This commit is contained in:
parent
41caaafec9
commit
d3dbe6e31e
@ -605,7 +605,7 @@ class calendar_ical extends calendar_boupdate
|
||||
if ($tzid == 'UTC' && $event['end'] - $event['start'] <= 86400)
|
||||
$attributes['duration'] = $event['end'] - $event['start'];
|
||||
else
|
||||
$attributes['DTEND'] = self::getDateTime($event['end'],$tzid,$parameters['DTEND']);
|
||||
$attributes['DTEND'] = self::getDateTime($event['end'],$tzid,$parameters['DTEND']);
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -2417,9 +2417,7 @@ class calendar_ical extends calendar_boupdate
|
||||
// No reference or RECURRENCE-ID for the series master
|
||||
$event['reference'] = $event['recurrence'] = 0;
|
||||
}
|
||||
if (Api\DateTime::to($event['start'], 'H:i:s') == '00:00:00' && Api\DateTime::to($event['end'], 'H:i:s') == '00:00:00'
|
||||
&& $event['end'] - $event['start'] == 86400
|
||||
)
|
||||
if (Api\DateTime::to($event['start'], 'H:i:s') == '00:00:00' && Api\DateTime::to($event['end'], 'H:i:s') == '00:00:00')
|
||||
{
|
||||
// 'All day' event that ends at midnight the next day, avoid that
|
||||
$event['end']--;
|
||||
|
Loading…
Reference in New Issue
Block a user