Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3483/functions
Modified Files:
ical_parser.php
Log Message:
Fix undefined variable warnings with VTODO in ics parser
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.255
retrieving revision 1.256
diff -C2 -d -r1.255 -r1.256
*** ical_parser.php 22 Jun 2009 21:13:21 -0000 1.255
--- ical_parser.php 10 Jul 2009 18:00:53 -0000 1.256
***************
*** 221,224 ****
--- 221,226 ----
case 'BEGIN:VTODO':
$vtodo_set = TRUE;
+ $start_date = '';
+ $start_time = '';
$summary = '';
$due_date = '';
|