diff options
| author | fisharebest <fisharebest@gmail.com> | 2011-06-11 22:08:12 +0000 |
|---|---|---|
| committer | fisharebest <fisharebest@gmail.com> | 2011-06-11 22:08:12 +0000 |
| commit | 340103dfa9c866b468e8649794ae8d1e8261764a (patch) | |
| tree | b97a99d2f17aacd6faef32b76f66b6a827f39650 /calendar.php | |
| parent | e68aac8538ec2eaf7ce9aa74f53b844cb274ecd5 (diff) | |
| download | webtrees-340103dfa9c866b468e8649794ae8d1e8261764a.tar.gz webtrees-340103dfa9c866b468e8649794ae8d1e8261764a.tar.bz2 webtrees-340103dfa9c866b468e8649794ae8d1e8261764a.zip | |
Lightbox module: stop loading config everywhere - just where it is used.
Diffstat (limited to 'calendar.php')
| -rw-r--r-- | calendar.php | 56 |
1 files changed, 25 insertions, 31 deletions
diff --git a/calendar.php b/calendar.php index e67714d1aa..63ea21de65 100644 --- a/calendar.php +++ b/calendar.php @@ -1,35 +1,29 @@ <?php -/** - * Display Events on a Calendar - * - * Displays events on a daily, monthly, or yearly calendar. - * - * webtrees: Web based Family History software - * Copyright (C) 2010 webtrees development team. - * - * Derived from PhpGedView - * Copyright (C) 2002 to 2010 PGV Development Team. All rights reserved. - * - * 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. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA - * - * This Page Is Valid XHTML 1.0 Transitional! > 3 September 2005 - * - * $Id$ - * @package webtrees - * @subpackage Calendar - */ +// Display Events on a Calendar +// +// Displays events on a daily, monthly, or yearly calendar. +// +// webtrees: Web based Family History software +// Copyright (C) 2011 webtrees development team. +// +// Derived from PhpGedView +// Copyright (C) 2002 to 2010 PGV Development Team. All rights reserved. +// +// 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. +// +// This program is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with this program; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// $Id$ define('WT_SCRIPT_NAME', 'calendar.php'); require './includes/session.php'; |
