Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv12046/functions
Modified Files:
ical_parser.php
Log Message:
Workaround for timezones created in Evolution.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.102
retrieving revision 1.103
diff -C2 -d -r1.102 -r1.103
*** ical_parser.php 18 Sep 2003 00:32:19 -0000 1.102
--- ical_parser.php 19 Sep 2003 20:36:58 -0000 1.103
***************
*** 617,620 ****
--- 617,621 ----
//
case 'DUE':
+ $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data);
$zulu_time = false;
if (substr($data,-1) == 'Z') $zulu_time = true;
***************
*** 663,666 ****
--- 664,668 ----
case 'COMPLETED':
+ $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data);
$zulu_time = false;
if (substr($data,-1) == 'Z') $zulu_time = true;
***************
*** 730,733 ****
--- 732,736 ----
case 'DTSTART':
+ $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data);
$zulu_time = false;
if (substr($data,-1) == 'Z') $zulu_time = true;
***************
*** 777,780 ****
--- 780,784 ----
case 'DTEND';
+ $data = str_replace ('/softwarestudio.org/Olson_20011030_5/', '', $data);
$zulu_time = false;
if (substr($data,-1) == 'Z') $zulu_time = true;
|