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