| 1 |
<?php
|
| 2 |
|
| 3 |
// $Header: /cvsroot/tikiwiki/tiki/index.php,v 1.4.2.2 2005/01/01 00:11:21 damosoft Exp $
|
| 4 |
|
| 5 |
// Copyright (c) 2002-2005, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
|
| 6 |
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
|
| 7 |
// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
|
| 8 |
require_once ('tiki-setup.php');
|
| 9 |
if(!(headers_sent())){
|
| 10 |
header ("location: $tikiIndex");
|
| 11 |
}
|
| 12 |
die("header already sent");
|
| 13 |
|
| 14 |
?>
|