From 67ddb8a12aec7bc68a6c445b1712a1a6e18533ae Mon Sep 17 00:00:00 2001 From: Chad Little Date: Fri, 19 Sep 2003 20:36:58 +0000 Subject: Workaround for timezones created in Evolution. --- functions/ical_parser.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'functions') diff --git a/functions/ical_parser.php b/functions/ical_parser.php index 77210f4..2a32b94 100644 --- a/functions/ical_parser.php +++ b/functions/ical_parser.php @@ -616,6 +616,7 @@ foreach ($cal_filelist as $filename) { // Start VTODO Parsing // case 'DUE': + $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data); $zulu_time = false; if (substr($data,-1) == 'Z') $zulu_time = true; $data = ereg_replace('T', '', $data); @@ -662,6 +663,7 @@ foreach ($cal_filelist as $filename) { break; case 'COMPLETED': + $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data); $zulu_time = false; if (substr($data,-1) == 'Z') $zulu_time = true; $data = ereg_replace('T', '', $data); @@ -729,6 +731,7 @@ foreach ($cal_filelist as $filename) { // End VTODO Parsing case 'DTSTART': + $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data); $zulu_time = false; if (substr($data,-1) == 'Z') $zulu_time = true; $data = ereg_replace('T', '', $data); @@ -776,6 +779,7 @@ foreach ($cal_filelist as $filename) { break; case 'DTEND'; + $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data); $zulu_time = false; if (substr($data,-1) == 'Z') $zulu_time = true; $data = ereg_replace('T', '', $data); -- cgit v1.2.3