1<?php
2/**
3 * This redirects to the site's root to prevent directory browsing.
4 *
5 * @ignore
6 * @package TikiWiki
7 * @subpackage db
8 * @copyright (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
9 * @licence Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
10 */
11// $Id$
12
13// This redirects to the sites root to prevent directory browsing
14header("location: ../tiki-index.php");
15die;
16