From: <cl...@us...> - 2003-09-26 17:03:14
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1:/tmp/cvs-serv8026 Modified Files: index.php Log Message: Fixed errors. Index: index.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/index.php,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** index.php 17 Nov 2002 02:32:10 -0000 1.5 --- index.php 26 Sep 2003 16:00:41 -0000 1.6 *************** *** 1,6 **** <?php include "./config.inc.php"; ! if ($HTTP_COOKIE_VARS['phpicalendar']) { $phpicalendar = unserialize(stripslashes($HTTP_COOKIE_VARS['phpicalendar'])); $default_view = $phpicalendar['cookie_view']; --- 1,7 ---- <?php + if (!isset($ALL_CALENDARS_COMBINED)) $ALL_CALENDARS_COMBINED = 'all_calendars_combined971'; include "./config.inc.php"; ! if (isset($HTTP_COOKIE_VARS['phpicalendar'])) { $phpicalendar = unserialize(stripslashes($HTTP_COOKIE_VARS['phpicalendar'])); $default_view = $phpicalendar['cookie_view']; |