Noticing an issue with the ICAL export where the timezone is not being read correctly by outlook. I seem to have fixed this issue by adding single quotes around the timezone ‘America/Chicago’ in the ical php file. Has anyone else experienced this issue? Can a fix be implemented?
From what I can tell, just adding the single quotes to the following section, fixed the issue for me:
Changed the following lines in the file events-made-easy/eme_ical.php:
Changed FROM:
} else {
$res .= “DTSTART;TZID=$tzstring:$dtstart\r\n”;
$res .= “DTEND;TZID=$tzstring:$dtend\r\n”;
}
Changed TO:
} else {
$res .= “DTSTART;TZID=’$tzstring’:$dtstart\r\n”;
$res .= “DTEND;TZID=’$tzstring’:$dtend\r\n”;
}