aboutsummaryrefslogtreecommitdiffstats
path: root/include/event.php
diff options
context:
space:
mode:
Diffstat (limited to 'include/event.php')
-rw-r--r--include/event.php12
1 files changed, 1 insertions, 11 deletions
diff --git a/include/event.php b/include/event.php
index 5e50d6cae..e41bf2db7 100644
--- a/include/event.php
+++ b/include/event.php
@@ -536,20 +536,10 @@ function event_import_ical($ical, $uid) {
}
$dtstart = $ical->DTSTART->getDateTime();
+ $ev['adjust'] = (($ical->DTSTART->isFloating()) ? 1 : 0);
// logger('dtstart: ' . var_export($dtstart,true));
-// @FIXME - convert/upgrade to vobject [3|4]
-// switch($dtstart->timezone_type) {
-// case VObject\Property\DateTime::UTC :
-// $ev['adjust'] = 0;
-// break;
-// case VObject\Property\DateTime::LOCALTZ :
-// default:
-// $ev['adjust'] = 1;
-// break;
-// }
-
$ev['start'] = datetime_convert((($ev['adjust']) ? 'UTC' : date_default_timezone_get()),'UTC',
$dtstart->format(\DateTime::W3C));