mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
27 lines
1.1 KiB
PHP
27 lines
1.1 KiB
PHP
<?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();
|
|
?>
|