* * author : Pierrick LE GALL * * * * $Id$ * * *************************************************************************** /*************************************************************************** * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; * * * ***************************************************************************/ //----------------------------------------------------------- include $phpwg_root_path = './'; include_once( $phpwg_root_path.'common.php' ); if ( $conf['access'] == 'restricted' ) { if ( isset( $_COOKIE['id'] ) ) $url = 'category'; else $url = 'identification'; } else $url = 'category'; // redirection $url.= '.php'; header( 'Request-URI: '.$url ); header( 'Content-Location: '.$url ); header( 'Location: '.$url ); exit(); ?>