Update of /cvsroot/phpicalendar/phpicalendar/functions/parse
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv7815/functions/parse
Modified Files:
end_vevent.php parse_tzs.php
Log Message:
add download event to event popup
Index: end_vevent.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/end_vevent.php,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** end_vevent.php 30 Dec 2008 03:48:13 -0000 1.23
--- end_vevent.php 2 Jan 2009 07:12:12 -0000 1.24
***************
*** 335,342 ****
--- 335,345 ----
'spans_day' => $spans_day,
'location' => $location,
+ 'categories' => $vtodo_categories,
'organizer' => serialize($organizer),
'attendee' => serialize($attendee),
'calnumber' => $calnumber,
'calname' => $actual_calname,
+ 'timezone' => $start_tz,
+ 'other' => trim($other),
'geo' => $geo,
'url' => $url,
Index: parse_tzs.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/parse_tzs.php,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** parse_tzs.php 28 Dec 2008 19:30:41 -0000 1.9
--- parse_tzs.php 2 Jan 2009 07:12:12 -0000 1.10
***************
*** 44,50 ****
break;
case 'END:VTIMEZONE':
$tz_array[$tz_id] = array(
! 0 => $offset_s,
! 1 => $offset_d,
'dt_start' => @$begin_daylight,
'st_start' => @$begin_std,
--- 44,51 ----
break;
case 'END:VTIMEZONE':
+ if (!isset($offset_d) && isset($offset_s)) $offset_d = $offset_s;
$tz_array[$tz_id] = array(
! 0 => @$offset_s,
! 1 => @$offset_d,
'dt_start' => @$begin_daylight,
'st_start' => @$begin_std,
|