2000-10-12 19:36:47 +02:00
|
|
|
<?php
|
2001-01-17 13:35:43 +01:00
|
|
|
/**************************************************************************\
|
|
|
|
* 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. *
|
|
|
|
\**************************************************************************/
|
|
|
|
|
2000-12-24 04:37:10 +01:00
|
|
|
/* $Id$ */
|
2000-11-10 23:49:48 +01:00
|
|
|
|
2001-04-21 14:43:00 +02:00
|
|
|
if (floor(phpversion()) == 4) {
|
2000-12-31 04:49:33 +01:00
|
|
|
global $date, $year, $month, $day, $thisyear, $thismonth, $thisday, $filter, $keywords;
|
2001-04-28 23:56:24 +02:00
|
|
|
global $matrixtype, $participants, $owner, $phpgw, $grants, $rights, $SCRIPT_FILENAME, $remainder;
|
2000-12-31 04:49:33 +01:00
|
|
|
}
|
2001-03-24 06:01:02 +01:00
|
|
|
|
|
|
|
$cols = 8;
|
|
|
|
if($phpgw->calendar->check_perms(PHPGW_ACL_PRIVATE) == True)
|
|
|
|
{
|
|
|
|
$cols++;
|
|
|
|
}
|
2001-04-28 23:56:24 +02:00
|
|
|
|
|
|
|
include(PHPGW_APP_TPL.'/header.inc.php');
|
|
|
|
flush();
|
2000-11-19 18:01:30 +01:00
|
|
|
?>
|