aboutsummaryrefslogtreecommitdiffstats
path: root/functions/ical_parser.php
diff options
context:
space:
mode:
Diffstat (limited to 'functions/ical_parser.php')
-rw-r--r--functions/ical_parser.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/functions/ical_parser.php b/functions/ical_parser.php
index 36b2b3e..61e2587 100644
--- a/functions/ical_parser.php
+++ b/functions/ical_parser.php
@@ -63,7 +63,8 @@ if ($phpiCal_config->save_parsed_cals == 'yes') {
// At this point, all calendars are up-to-date, so we can simply used the pre-parsed data
$parse_file = false;
$calendar_name = $master_array['calendar_name'];
- $calendar_tz = $master_array['calendar_tz'];
+ if (isset($master_array['calendar_tz']))
+ $calendar_tz = $master_array['calendar_tz'];
}
}
}
@@ -94,7 +95,8 @@ if ($phpiCal_config->save_parsed_cals == 'yes') {
if ($master_array['-1'] == 'valid cal file') {
$parse_file = false;
$calendar_name = $master_array['calendar_name'];
- $calendar_tz = $master_array['calendar_tz'];
+ if (isset($master_array['calendar_tz']))
+ $calendar_tz = $master_array['calendar_tz'];
}
}
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy