Hi,
I tried to import my calendar to Google Calendar, but it failed with parse error.
The problem was that my exported ics file containts this:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:PHP
METHOD:REQUEST
X-WR-CALNAME:Lukács Péter
BEGIN:VTIMEZONE
TZID:(GMT+2:00) Athén, Isztanbul, Minszk, Helsinki, Jeruzsálem, Dél-Afrika
BEGIN:STANDARD
TZOFFSETFROM:0200
TZOFFSETTO:0200
END:STANDARD
END:VTIMEZONE
But it should look like this:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:PHP
METHOD:REQUEST
X-WR-CALNAME:Lukács Péter
BEGIN:VTIMEZONE
TZID:(GMT+2:00) Athén, Isztanbul, Minszk, Helsinki, Jeruzsálem, Dél-Afrika
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0200
END:STANDARD
END:VTIMEZONE
I modified the \environment\classes\event\CalFormatUtilities.php to add the extra + character, but im not sure why is it missing. May i missed to set up something related to my timezone or what? I using feng office in a windows 2003 server by the way.
Is it a bug or a user error?

Thanks...