Update of /cvsroot/phpicalendar/phpicalendar/functions
In directory sc8-pr-cvs1:/tmp/cvs-serv28463/functions
Modified Files:
ical_parser.php
Log Message:
Index: ical_parser.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/ical_parser.php,v
retrieving revision 1.119
retrieving revision 1.120
diff -C2 -d -r1.119 -r1.120
*** ical_parser.php 14 Nov 2003 10:05:46 -0000 1.119
--- ical_parser.php 14 Nov 2003 22:11:21 -0000 1.120
***************
*** 552,557 ****
// use the same code to write the data instead of always changing it 5 times
if (isset($recur_data) && is_array($recur_data)) {
! $recur_data_hour = substr($start_time,0,2);
! $recur_data_minute = substr($start_time,2,2);
foreach($recur_data as $recur_data_time) {
$recur_data_year = date('Y', $recur_data_time);
--- 552,557 ----
// use the same code to write the data instead of always changing it 5 times
if (isset($recur_data) && is_array($recur_data)) {
! $recur_data_hour = @substr($start_time,0,2);
! $recur_data_minute = @substr($start_time,2,2);
foreach($recur_data as $recur_data_time) {
$recur_data_year = date('Y', $recur_data_time);
|