From: <ji...@us...> - 2008-12-27 12:16:53
|
Update of /cvsroot/phpicalendar/phpicalendar/functions In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv617/functions Modified Files: template.php Log Message: do not check overlap on all day events -- yet Index: template.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/template.php,v retrieving revision 1.104 retrieving revision 1.105 diff -C2 -d -r1.104 -r1.105 *** template.php 27 Dec 2008 10:58:51 -0000 1.104 --- template.php 27 Dec 2008 11:42:41 -0000 1.105 *************** *** 915,918 **** --- 915,919 ---- foreach ($master_array[$daylink] as $cal_time => $event_times) { foreach ($event_times as $uid => $val) { + if (!isset($val['calnumber'])) continue; $event_calno = $val['calnumber']; $event_calno = (($event_calno - 1) % $unique_colors) + 1; |