egroupware_official/calendar/index.php
2001-01-21 13:15:21 +00:00

31 lines
1.5 KiB
PHP
Executable File

<?php
/**************************************************************************\
* phpGroupWare - Calendar *
* http://www.phpgroupware.org *
* Based on Webcalendar by Craig Knudsen <cknudsen@radix.net> *
* http://www.radix.net/~cknudsen *
* Modified by Mark Peters <skeeter@phpgroupware.org> *
* -------------------------------------------- *
* This program is free software; you can redistribute it and/or modify it *
* under the terms of the GNU General Public License as published by the *
* Free Software Foundation; either version 2 of the License, or (at your *
* option) any later version. *
\**************************************************************************/
/* $Id$ */
$phpgw_info["flags"]["currentapp"] = "calendar";
$phpgw_info["flags"]["noheader"] = True;
$phpgw_info["flags"]["nonavbar"] = True;
$phpgw_info["flags"]["noappheader"] = True;
$phpgw_info["flags"]["noappfooter"] = True;
$phpgw_info["flags"]["nofooter"] = True;
include("../header.inc.php");
$newpage = $phpgw_info["user"]["preferences"]["calendar"]["defaultcalendar"];
if ($namepage=="index.php") $newpage = "month.php";
Header("Location: ".$newpage."?".$QUERY_STRING);
$phpgw->common->phpgw_exit();
?>