By danroth on
Using the ical import with the calendar module, I find that the timezone is "double-correcting".
In other words, if I import a calendar from a GMT-4 site, events display on my calendar at GMT-8 (shifted to my local timezone). If I import from a GMT-5 site, events display on my calendar at GMT-10 (shifted to my local timezone).
In other words, if an event comes from a calendar on a GMT-4 site, it shows on my calendar 4 hours too early & from a GMT-5 site, it shows on my calendar 5 hours too early.
Any ideas or help greatly appreciated!
Comments
solution?
see http://drupal.org/node/156397
take away semicolon:
- if ($tz == $zone['timezone']);
+ if ($tz == $zone['timezone'])
solved my version of this problem!
.b