|
From: <ji...@us...> - 2008-12-28 10:51:01
|
Update of /cvsroot/phpicalendar/phpicalendar/functions/init In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv25222/functions/init Modified Files: cpaths.php date_range.php Log Message: kill admin.php; misc other changes; bump rc num Index: cpaths.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/cpaths.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** cpaths.php 28 Dec 2008 02:31:59 -0000 1.5 --- cpaths.php 28 Dec 2008 10:50:58 -0000 1.6 *************** *** 27,32 **** } #set up specific webcals for a particular cpath ! if (isset($more_webcals) && is_array($more_webcals[$cpath])){ ! $list_webcals = array_merge($list_webcals, $more_webcals["$cpath"]); } $phpiCal_config->setProperty('calendar_path',$calendar_path); \ No newline at end of file --- 27,32 ---- } #set up specific webcals for a particular cpath ! if (isset($more_webcals[$cpath]) && is_array($more_webcals[$cpath])){ ! foreach ($more_webcals[$cpath] as $wcal)$list_webcals[] = $wcal; } $phpiCal_config->setProperty('calendar_path',$calendar_path); \ No newline at end of file Index: date_range.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/functions/init/date_range.php,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** date_range.php 27 Dec 2008 23:18:07 -0000 1.8 --- date_range.php 28 Dec 2008 10:50:58 -0000 1.9 *************** *** 34,37 **** --- 34,38 ---- $mArray_end = mktime (0,0,0,$end_month,31,($end_year)); break; + case 'admin': case 'error': case 'preferences': |