fixed Warning: DateTime::modify(): Failed to parse time string (1234.5 second) at position 7 (s): The timezone could not be found in the database, caused by second fraction

This commit is contained in:
Ralf Becker 2011-08-11 08:41:13 +00:00
parent 378526a648
commit d2a87d2de4

View File

@ -629,7 +629,7 @@ class calendar_ical extends calendar_boupdate
else
{
$length = ($event['end'] - $event['start']) / 2;
$rrule['UNTIL']->modify($length . ' second');
$rrule['UNTIL']->modify((int)$length . ' second');
}
if (!$tzid || $version != '1.0')