mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 11:21:23 +01:00
removed daylight saving fix, as it caused what it is suppost to fix: exported events with a different daylight saving are wrong by one hour
This commit is contained in:
parent
df9ba564c2
commit
628f9e1e0b
@ -166,12 +166,14 @@
|
|||||||
//_debug_array($event);
|
//_debug_array($event);
|
||||||
|
|
||||||
// correct daylight saving time
|
// correct daylight saving time
|
||||||
|
/* causes times wrong by one hour, if exporting events with DST different from the current date,
|
||||||
|
which this fix is suppost to fix. Maybe the problem has been fixed in the horde code too.
|
||||||
$currentDST = date('I', mktime());
|
$currentDST = date('I', mktime());
|
||||||
$eventDST = date('I', $event['start']);
|
$eventDST = date('I', $event['start']);
|
||||||
$DSTCorrection = ($currentDST - $eventDST) * 3600;
|
$DSTCorrection = ($currentDST - $eventDST) * 3600;
|
||||||
$event['start'] = $event['start'] + $DSTCorrection;
|
$event['start'] = $event['start'] + $DSTCorrection;
|
||||||
$event['end'] = $event['end'] + $DSTCorrection;
|
$event['end'] = $event['end'] + $DSTCorrection;
|
||||||
|
*/
|
||||||
$eventGUID = $GLOBALS['egw']->common->generate_uid('calendar',$event['id']);
|
$eventGUID = $GLOBALS['egw']->common->generate_uid('calendar',$event['id']);
|
||||||
|
|
||||||
$vevent = Horde_iCalendar::newComponent('VEVENT',$vcal);
|
$vevent = Horde_iCalendar::newComponent('VEVENT',$vcal);
|
||||||
|
Loading…
Reference in New Issue
Block a user