From: <ji...@us...> - 2008-12-27 10:58:56
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29598/functions/init Modified Files: configs.php Log Message: rewrite and condense master array writing in end_vevent.php. Condense draw_week in template.php. bump vers Index: configs.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/configs.php,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** configs.php 24 Dec 2008 21:09:31 -0000 1.6 --- configs.php 27 Dec 2008 10:58:51 -0000 1.7 *************** *** 46,50 **** $fill_min = $dTime[2]; $fill_min = sprintf('%02d', $fill_min + $phpiCal_config->gridLength); ! if ($fill_min == 60) { $fill_h = sprintf('%02d', ($fill_h + 1)); $fill_min = '00'; --- 46,50 ---- $fill_min = $dTime[2]; $fill_min = sprintf('%02d', $fill_min + $phpiCal_config->gridLength); ! if ($fill_min >= 60) { $fill_h = sprintf('%02d', ($fill_h + 1)); $fill_min = '00'; |