You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Parse an ICS file with the following multi-line value:
...
DESCRIPTION:BendTech Meetup\nWednesday\, April 17 at 6:00 PM\n\nThis meet
ing is a followup to the INW meeting last Tuesday where we talked about
MakerSpaces. We had a great turnout (30+ people) and lots of energy a...
\n\nDetails: http://www.meetup.com/bendtech/events/114014962/
...
Notice that the last line is parsed as a separate key-value line, rather than
as a continuation of the DESCRIPTION line.
This can be fixed by adding the following to the head of the foreach block in
__construct():
if (substr($line, 0, 1) == ' ') {
// continuation line
$line = substr($line, 1);
$this->addCalendarComponentWithKeyAndValue($type, false, $line);
continue;
}
Original issue reported on code.google.com by broofa on 15 Apr 2013 at 12:42
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
broofa
on 15 Apr 2013 at 12:42The text was updated successfully, but these errors were encountered: