ics-parser icon indicating copy to clipboard operation
ics-parser copied to clipboard

Fix multiline-description

Open GoogleCodeExporter opened this issue 9 years ago • 1 comments

Hello, me and my boss found the solution for that problem.
You write the wrongregular expression to  keyValueFromString and that maked the 
problem.
You need to replace this:

preg_match("/([^:]+)[:]([\w\W]*)/", $text, $matches);

To that:

preg_match("/^([A-Z\-]+)\:(.*)$/", $text, $matches);

Original issue reported on code.google.com by [email protected] on 23 Jul 2013 at 2:38

GoogleCodeExporter avatar Mar 29 '15 11:03 GoogleCodeExporter

This solution didn't work for me..

olilesp avatar Jul 21 '24 18:07 olilesp