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
abel.zol...@reverseproject.huon 23 Jul 2013 at 2:38