From: <ji...@us...> - 2008-12-20 03:22:58
|
Update of /cvsroot/phpicalendar/phpicalendar In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv5363 Modified Files: month.php print.php week.php year.php Log Message: misc error warnings and notices Index: month.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/month.php,v retrieving revision 1.147 retrieving revision 1.148 diff -C2 -d -r1.147 -r1.148 *** month.php 19 Dec 2008 21:15:53 -0000 1.147 --- month.php 20 Dec 2008 03:22:54 -0000 1.148 *************** *** 74,78 **** 'display_date' => $display_date, 'rss_powered' => $rss_powered, ! 'default_path' => '', 'rss_available' => '', 'rss_valid' => '', --- 74,78 ---- 'display_date' => $display_date, 'rss_powered' => $rss_powered, ! 'default_path' => $phpiCal_config->default_path, 'rss_available' => '', 'rss_valid' => '', Index: print.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/print.php,v retrieving revision 1.41 retrieving revision 1.42 diff -C2 -d -r1.41 -r1.42 *** print.php 20 Dec 2008 00:33:14 -0000 1.41 --- print.php 20 Dec 2008 03:22:54 -0000 1.42 *************** *** 4,8 **** 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); $parse_month = date ("Ym", strtotime($getdate)); --- 4,8 ---- require_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/init.inc.php'); ! $start_week_time = strtotime(dateOfWeek($getdate, $phpiCal_config->week_start_day)); $end_week_time = $start_week_time + (6 * 25 * 60 * 60); $parse_month = date ("Ym", strtotime($getdate)); *************** *** 42,46 **** require_once(BASE.'functions/list_functions.php'); require_once(BASE.'functions/template.php'); ! header("Content-Type: text/html; charset=$charset"); --- 42,46 ---- require_once(BASE.'functions/list_functions.php'); require_once(BASE.'functions/template.php'); ! header("Content-Type: text/html; charset=$phpiCal_config->charset"); *************** *** 65,83 **** 'printview' => $printview, 'display_date' => $display_date, ! 'sidebar_date' => $sidebar_date, 'rss_powered' => $rss_powered, 'rss_available' => '', 'rss_valid' => '', 'show_search' => '', ! 'next_day' => $next_day, ! 'prev_day' => $prev_day, 'show_goto' => '', 'is_logged_in' => '', ! 'list_icals' => $list_icals, ! 'list_years' => $list_years, ! 'list_months' => $list_months, ! 'list_weeks' => $list_weeks, ! 'list_jumps' => $list_jumps, ! 'legend' => $list_calcolors, 'style_select' => @$style_select, 'l_time' => $lang['l_time'], --- 65,83 ---- 'printview' => $printview, 'display_date' => $display_date, ! 'sidebar_date' => @$sidebar_date, 'rss_powered' => $rss_powered, 'rss_available' => '', 'rss_valid' => '', 'show_search' => '', ! 'next_day' => @$next_day, ! 'prev_day' => @$prev_day, 'show_goto' => '', 'is_logged_in' => '', ! 'list_icals' => @$list_icals, ! 'list_years' => @$list_years, ! 'list_months' => @$list_months, ! 'list_weeks' => @$list_weeks, ! 'list_jumps' => @$list_jumps, ! 'legend' => @$list_calcolors, 'style_select' => @$style_select, 'l_time' => $lang['l_time'], Index: week.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/week.php,v retrieving revision 1.136 retrieving revision 1.137 diff -C2 -d -r1.136 -r1.137 *** week.php 20 Dec 2008 00:33:14 -0000 1.136 --- week.php 20 Dec 2008 03:22:54 -0000 1.137 *************** *** 57,61 **** 'version' => $phpiCal_config->phpicalendar_version, 'charset' => $phpiCal_config->charset, ! 'default_path' => '', 'template' => $phpiCal_config->template, 'cal' => $cal, --- 57,61 ---- 'version' => $phpiCal_config->phpicalendar_version, 'charset' => $phpiCal_config->charset, ! 'default_path' => $phpiCal_config->default_path, 'template' => $phpiCal_config->template, 'cal' => $cal, Index: year.php =================================================================== RCS file: /cvsroot/phpicalendar/phpicalendar/year.php,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** year.php 19 Dec 2008 21:15:53 -0000 1.50 --- year.php 20 Dec 2008 03:22:54 -0000 1.51 *************** *** 58,62 **** 'template' => $phpiCal_config->template, 'charset' => $phpiCal_config->charset, ! 'default_path' => '', 'cal' => $cal, 'getcpath' => "&cpath=$cpath", --- 58,62 ---- 'template' => $phpiCal_config->template, 'charset' => $phpiCal_config->charset, ! 'default_path' => $phpiCal_config->default_path, 'cal' => $cal, 'getcpath' => "&cpath=$cpath", *************** *** 72,79 **** 'event_js' => '', 'this_year' => $this_year, ! 'next_day' => $next_day, ! 'next_week' => $next_week, ! 'prev_day' => $prev_day, ! 'prev_week' => $prev_week, 'next_year' => $next_year, 'prev_year' => $prev_year, --- 72,79 ---- 'event_js' => '', 'this_year' => $this_year, ! 'next_day' => @$next_day, ! 'next_week' => @$next_week, ! 'prev_day' => @$prev_day, ! 'prev_week' => @$prev_week, 'next_year' => $next_year, 'prev_year' => $prev_year, *************** *** 92,96 **** 'list_jumps' => $list_jumps, 'legend' => $list_calcolors, ! 'style_select' => $style_select, 'l_goprint' => $lang['l_goprint'], 'l_preferences' => $lang['l_preferences'], --- 92,96 ---- 'list_jumps' => $list_jumps, 'legend' => $list_calcolors, ! 'style_select' => @$style_select, 'l_goprint' => $lang['l_goprint'], 'l_preferences' => $lang['l_preferences'], |