Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv22350/functions
Modified Files:
ical_parser.php
Log Message:
remove self-link icons
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.238
retrieving revision 1.239
diff -C2 -d -r1.238 -r1.239
*** ical_parser.php 29 Dec 2008 05:23:46 -0000 1.238
--- ical_parser.php 29 Dec 2008 06:33:45 -0000 1.239
***************
*** 135,139 ****
$start_time, $end_time, $start_date, $end_date,
$allday_start, $allday_end, $start, $end, $the_duration,
! $beginning, $start_of_vevent, $url,
$valarm_description, $start_unixtime, $end_unixtime, $display_end_tmp, $end_time_tmp1,
$recurrence_id, $uid, $rrule, $until_check,
--- 135,139 ----
$start_time, $end_time, $start_date, $end_date,
$allday_start, $allday_end, $start, $end, $the_duration,
! $beginning, $start_of_vevent,
$valarm_description, $start_unixtime, $end_unixtime, $display_end_tmp, $end_time_tmp1,
$recurrence_id, $uid, $rrule, $until_check,
***************
*** 149,152 ****
--- 149,153 ----
$location = '';
$url = '';
+ $geo = '';
$type = '';
$wkst = 'MO';
***************
*** 205,208 ****
--- 206,210 ----
'description' => $description,
'calname' => $actual_calname,
+ 'geo' => $geo,
'url' => $url
);
***************
*** 264,267 ****
--- 266,273 ----
$status = "$data";
break;
+
+ case 'GEO':
+ $geo = "$data";
+ break;
case 'CLASS':
|