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