mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
35 lines
1.6 KiB
PHP
Executable File
35 lines
1.6 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 ($newpage=="index.php") {
|
|
$newpage = "month.php";
|
|
$phpgw->preferences->change("calendar","defaultcalendar","month.php");
|
|
$phpgw->preferences->commit();
|
|
}
|
|
|
|
Header("Location: ".$newpage."?".$QUERY_STRING);
|
|
$phpgw->common->phpgw_exit();
|
|
?>
|