aboutsummaryrefslogtreecommitdiffstats
path: root/index.php
blob: 9310f4e9a89d8c2e75d67847cc0e332acf447ba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

if (!isset($ALL_CALENDARS_COMBINED))  $ALL_CALENDARS_COMBINED = 'all_calendars_combined971';
include "./config.inc.php";
if (isset($_COOKIE['phpicalendar'])) {
	$phpicalendar 		= unserialize(stripslashes($_COOKIE['phpicalendar']));
	$default_view 		= $phpicalendar['cookie_view'];
}
if ($printview_default == 'yes') {
	$printview = $default_view;
	$default_view = "print.php";
} else {
	$default_view = "$default_view" . ".php";
}
/*header("Location: $default_view");*/

include( $default_view );

?>

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