mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-23 14:28:45 +01:00
* CalDAV/Calendar: fixed invalid ics file for alarm exactly at the event
This commit is contained in:
parent
98135e4087
commit
99ca6a592b
@ -1622,6 +1622,11 @@ class Horde_iCalendar {
|
||||
$duration .= $value . 'S';
|
||||
}
|
||||
}
|
||||
// duration without time ("P") is NOT valid, append 0 minutes ("T0M")
|
||||
elseif ($duration === 'P')
|
||||
{
|
||||
$duration .= 'T0M';
|
||||
}
|
||||
|
||||
return $duration;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user