Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19390/phpicalendar/functions
Modified Files:
ical_parser.php
Log Message:
Comment out section in ical_parser.php that seems to cause repeat problems for repeating events
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.201
retrieving revision 1.202
diff -C2 -d -r1.201 -r1.202
*** ical_parser.php 2 Dec 2005 17:18:31 -0000 1.201
--- ical_parser.php 8 Feb 2006 09:07:02 -0000 1.202
***************
*** 523,527 ****
// if we need to add $interval weeks to $next_date_time.
if ($next_date_time > strtotime($week_start_day, $next_range_time) && $interval > 1) {
! $next_date_time = strtotime('+'.($interval - 1).' '.$freq_type, $next_date_time);
}
$recur_data[] = $next_date_time;
--- 523,527 ----
// if we need to add $interval weeks to $next_date_time.
if ($next_date_time > strtotime($week_start_day, $next_range_time) && $interval > 1) {
! # $next_date_time = strtotime('+'.($interval - 1).' '.$freq_type, $next_date_time);
}
$recur_data[] = $next_date_time;
|