<?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();
?>