hi
ok – i fixed it – maybe some clever egw-hacker can put this into action :
i have it now only for one device. somehow one should be able to setup an array of devices with TimeZone bug !
in :
./phpgwapi/inc/horde/Horde/iCalendar.php
line - 929
-----------------------------------8<----------------------
-$value -= $TZOffset;
-----------------------------------8<----------------------
+if($this->getAttribute(‘NOKIATZBUG’) == ‘Nokia 5300’)
+{
+error_log(“NJL NOKIA BUG ---------------------- nokia bug caught --------------------”);
+}
+else
+{
+error_log(“NJL NOKIA BUG ---------------------- no bug for this device --------------------”);
+$value -= $TZOffset;
+}
-----------------------------------8<----------------------
and
in ./calendar/inc/class.boical.inc.php
line - 420
-----------------------------------8<----------------------
-$vcal->addComponent($vevent);
-----------------------------------8<----------------------
+$vevent->setAttribute(‘NOKIATZBUG’,$this->productName);
+$vcal->addComponent($vevent);
-----------------------------------8<----------------------
ciao