From ce0ebfc5272a8bb682f218d4d58d3d8d68e15f8a Mon Sep 17 00:00:00 2001 From: Jason Oster Date: Thu, 15 Apr 2010 19:39:53 +0000 Subject: Fix undefined index warning --- functions/ical_parser.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'functions') 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']; } } } -- cgit v1.2.3