aboutsummaryrefslogtreecommitdiffstats
path: root/print.php
diff options
context:
space:
mode:
authorJim Hu <jimhu@users.sourceforge.net>2008-12-20 03:22:54 +0000
committerJim Hu <jimhu@users.sourceforge.net>2008-12-20 03:22:54 +0000
commit9b00469b471a8b159c60ecca333f0f7064ba1d27 (patch)
treee4716278c994d577c67a9bf3887c453c56b67030 /print.php
parent3734188aa20c0fad1610e5de3078d7d022694bbd (diff)
downloadphpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.tar.gz
phpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.tar.bz2
phpicalendar-9b00469b471a8b159c60ecca333f0f7064ba1d27.zip
misc error warnings and notices
Diffstat (limited to 'print.php')
-rw-r--r--print.php22
1 files changed, 11 insertions, 11 deletions
diff --git a/print.php b/print.php
index 804bfe5..5c2a30a 100644
--- a/print.php
+++ b/print.php
@@ -3,7 +3,7 @@ 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));
+$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));
$events_week = 0;
@@ -41,7 +41,7 @@ if ($printview == 'day') {
require_once(BASE.'functions/ical_parser.php');
require_once(BASE.'functions/list_functions.php');
require_once(BASE.'functions/template.php');
-header("Content-Type: text/html; charset=$charset");
+header("Content-Type: text/html; charset=$phpiCal_config->charset");
$page = new Page(BASE.'templates/'.$template.'/print.tpl');
@@ -64,21 +64,21 @@ $page->replace_tags(array(
'current_view' => $current_view,
'printview' => $printview,
'display_date' => $display_date,
- 'sidebar_date' => $sidebar_date,
+ 'sidebar_date' => @$sidebar_date,
'rss_powered' => $rss_powered,
'rss_available' => '',
'rss_valid' => '',
'show_search' => '',
- 'next_day' => $next_day,
- 'prev_day' => $prev_day,
+ '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,
+ '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'],
'l_summary' => $lang['l_summary'],

© 2014-2024 Faster IT GmbH | imprint | privacy policy