Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv10190
Modified Files:
ical_parser.php
Log Message:
Fix for [ 829861 ] Yearly Recurrence Showing two events.
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.112
retrieving revision 1.113
diff -C2 -d -r1.112 -r1.113
*** ical_parser.php 5 Nov 2003 05:31:03 -0000 1.112
--- ical_parser.php 5 Nov 2003 06:07:20 -0000 1.113
***************
*** 525,529 ****
} else {
$day = date('d', $start_date_time);
! $next_date_time = mktime(0,0,0,$month,$day,$this_year);
}
$recur_data[] = $next_date_time;
--- 525,529 ----
} else {
$day = date('d', $start_date_time);
! $next_date_time = mktime(0,0,0,$month,$day,$year);
}
$recur_data[] = $next_date_time;
|