root / index.php
View | Annotate | Download (1.1 KB)
| 1 | e26212d6 | Andreas | <?php |
|---|---|---|---|
| 2 | 4344ad92 | Andreas | |
| 3 | 4344ad92 | Andreas | /***************************************************************************
|
| 4 | 4344ad92 | Andreas | * |
| 5 | 9a37d81c | Andreas | * Nephthys - file sharing management |
| 6 | 4344ad92 | Andreas | * Copyright (c) by Andreas Unterkircher, unki@netshadow.at |
| 7 | 4344ad92 | Andreas | * |
| 8 | 9a37d81c | Andreas | * This file is part of Nephthys. |
| 9 | 9a37d81c | Andreas | * |
| 10 | 9a37d81c | Andreas | * Nephthys is free software: you can redistribute it and/or modify |
| 11 | 4344ad92 | Andreas | * it under the terms of the GNU General Public License as published by |
| 12 | 9a37d81c | Andreas | * the Free Software Foundation, either version 3 of the License, or |
| 13 | 9a37d81c | Andreas | * (at your option) any later version. |
| 14 | 4344ad92 | Andreas | * |
| 15 | 9a37d81c | Andreas | * Nephthys is distributed in the hope that it will be useful, |
| 16 | 4344ad92 | Andreas | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | 4344ad92 | Andreas | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | 4344ad92 | Andreas | * GNU General Public License for more details. |
| 19 | 4344ad92 | Andreas | * |
| 20 | 4344ad92 | Andreas | * You should have received a copy of the GNU General Public License |
| 21 | 9a37d81c | Andreas | * along with Nephthys. If not, see <http://www.gnu.org/licenses/>. |
| 22 | 4344ad92 | Andreas | * |
| 23 | 4344ad92 | Andreas | ***************************************************************************/ |
| 24 | 4344ad92 | Andreas | |
| 25 | 4344ad92 | Andreas | require_once "nephthys.class.php"; |
| 26 | 4344ad92 | Andreas | |
| 27 | 4344ad92 | Andreas | $nephthys = new NEPHTHYS;
|
| 28 | 123b4741 | Andreas | $nephthys->init(); |
| 29 | 4344ad92 | Andreas | |
| 30 | b392cb9b | Andreas | // vim: set filetype=php expandtab softtabstop=3 tabstop=3 shiftwidth=3 autoindent smartindent:
|
| 31 | 4344ad92 | Andreas | ?> |