fix title
[phorkie.git] / www / index.php
1 <?php
2 /**
3  * Jump to the index as per the configuration
4  */
5 namespace phorkie;
6 $reqWritePermissions = false;
7 require_once 'www-header.php';
8
9 header(
10     'Location: '
11     . Tools::fullUrl('/' . $GLOBALS['phorkie']['cfg']['index'])
12 );
13 ?>