From: <ji...@us...> - 2007-10-12 06:41:31
|
Update of /cvsroot/phpicalendar/phpicalendar In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8513/phpicalendar Modified Files: print.php week.php year.php Log Message: deal with various unset variable warning situations Index: print.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** print.php 10 Apr 2006 02:21:07 -0000 1.39 --- print.php 12 Oct 2007 06:41:33 -0000 1.40 *************** *** 1,8 **** <?php - define('BASE', './'); require_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/init.inc.php'); - $current_view ='print'; $start_week_time = strtotime(dateOfWeek($getdate, $week_start_day)); $end_week_time = $start_week_time + (6 * 25 * 60 * 60); --- 1,7 ---- <?php define('BASE', './'); + $current_view ='print'; require_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/init.inc.php'); $start_week_time = strtotime(dateOfWeek($getdate, $week_start_day)); $end_week_time = $start_week_time + (6 * 25 * 60 * 60); Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -d -r1.130 -r1.131 *** week.php 10 Apr 2006 02:21:07 -0000 1.130 --- week.php 12 Oct 2007 06:41:33 -0000 1.131 *************** *** 1,4 **** <?php - $current_view = "week"; define('BASE', './'); --- 1,3 ---- Index: year.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** year.php 19 May 2007 03:55:35 -0000 1.45 --- year.php 12 Oct 2007 06:41:33 -0000 1.46 *************** *** 1,4 **** <?php - define('BASE', './'); $current_view = 'year'; --- 1,3 ---- |