Update of /cvsroot/phpicalendar/phpicalendar/functions/parse
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25593/functions/parse
Modified Files:
parse_tzs.php
Log Message:
misc minor fixes
Index: parse_tzs.php
===================================================================
RCS file: /cvsroot/phpicalendar/phpicalendar/functions/parse/parse_tzs.php,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** parse_tzs.php 15 Dec 2008 17:25:28 -0000 1.3
--- parse_tzs.php 20 Dec 2008 00:33:14 -0000 1.4
***************
*** 47,54 ****
0 => $offset_s,
1 => $offset_d,
! 'dt_start' => $begin_daylight,
! 'st_start' => $begin_std,
! 'st_name' => $st_name,
! 'dt_name' => $dt_name
); #echo "<pre>$tz_id"; print_r($tz_array[$tz_id]);echo"</pre>";
--- 47,54 ----
0 => $offset_s,
1 => $offset_d,
! 'dt_start' => @$begin_daylight,
! 'st_start' => @$begin_std,
! 'st_name' => @$st_name,
! 'dt_name' => @$dt_name
); #echo "<pre>$tz_id"; print_r($tz_array[$tz_id]);echo"</pre>";
|