| 1 | <?php |
|---|
| 2 | /** |
|---|
| 3 | * Clansuite - just an eSports CMS |
|---|
| 4 | * Jens-André Koch © 2005 - onwards |
|---|
| 5 | * http://www.clansuite.com/ |
|---|
| 6 | * |
|---|
| 7 | * _\|/_ |
|---|
| 8 | * (o o) |
|---|
| 9 | +-----oOO-{_}-OOo------------------------------------------------------------------+ |
|---|
| 10 | | | |
|---|
| 11 | | LICENSE | |
|---|
| 12 | | | |
|---|
| 13 | | This program is free software; you can redistribute it and/or modify | |
|---|
| 14 | | it under the terms of the GNU General Public License as published by | |
|---|
| 15 | | the Free Software Foundation; either version 2 of the License, or | |
|---|
| 16 | | (at your option) any later version. | |
|---|
| 17 | | | |
|---|
| 18 | | This program is distributed in the hope that it will be useful, | |
|---|
| 19 | | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 20 | | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|---|
| 21 | | GNU General Public License for more details. | |
|---|
| 22 | | | |
|---|
| 23 | | You should have received a copy of the GNU General Public License | |
|---|
| 24 | | along with this program; if not, write to the Free Software | |
|---|
| 25 | | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
|---|
| 26 | | | |
|---|
| 27 | +----------------------------------------------------------------------------------+ |
|---|
| 28 | * |
|---|
| 29 | * @license GNU/GPL v2 or (at your option) any later version, see "/doc/LICENSE". |
|---|
| 30 | * @author Jens-André Koch <vain@clansuite.com> |
|---|
| 31 | * @copyright Copyleft: All rights reserved. Jens-André Koch (2005 - onwards) |
|---|
| 32 | * @link http://www.clansuite.com |
|---|
| 33 | * @version SVN: $Id$ |
|---|
| 34 | */ |
|---|
| 35 | |
|---|
| 36 | // define Clansuite Security Constant |
|---|
| 37 | define('IN_CS', true); |
|---|
| 38 | |
|---|
| 39 | require 'application/bootstrap.php'; |
|---|
| 40 | \Clansuite\CMS::run(); |
|---|
| 41 | ?> |
|---|