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

include "./config.inc.php";
if ($HTTP_COOKIE_VARS['phpicalendar']) {
	$phpicalendar 		= unserialize(stripslashes($HTTP_COOKIE_VARS['phpicalendar']));
	$default_view 		= $phpicalendar['cookie_view'];
}
if ($printview_default == 'yes') {
	$default_view = "print.php?printview=$default_view";
} else {
	$default_view = "$default_view" . ".php";
}
header("Location: $default_view");

?>

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