blob: 472ca8d15726c05f999e294e7c2f2a5a43c9c792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<?php
/***************************************************************************
* index.php *
* ------------------- *
* application : PhpWebGallery 1.3 <http://phpwebgallery.net> *
* author : Pierrick LE GALL <pierrick@z0rglub.com> *
* *
* $Id$
* *
***************************************************************************/
define( PREFIX_INCLUDE, '' );
include_once( './include/functions.inc.php' );
database_connection();
// retrieving configuration informations
$query = 'SELECT access';
$query.= ' FROM '.PREFIX_TABLE.'config;';
$row = mysql_fetch_array( mysql_query( $query ) );
if ( $row['access'] == 'restricted' ) $url = 'identification';
else $url = 'category';
// redirection
$url.= '.php';
header( 'Request-URI: '.$url );
header( 'Content-Location: '.$url );
header( 'Location: '.$url );
exit();
?>
|