<?php
session_name('PeopleBox');
session_start();
require_once($_SESSION['pathtocoreclass']."class_functions.php");
require_once($_SESSION['pathtocoreclass']."class_request.php");
require_once($_SESSION['pathtocoreclass']."class_core_tools.php");
$core_tools = new core_tools();
$core_tools->test_user();
$core_tools->load_lang();
$core_tools->test_service('adv_search', 'indexing_searching');
/****************Management of the location bar ************/
$init = false;
if($_REQUEST['reinit'] == "true")
{
$init = true;
}
$level = "";
if($_REQUEST['level'] == 2 || $_REQUEST['level'] == 3 || $_REQUEST['level'] == 4 || $_REQUEST['level'] == 1)
{
$level = $_REQUEST['level'];
}
$page_path = $_SESSION['config']['businessappurl'].'index.php?page=search_adv_result&module=indexing_searching';
$page_label = _RESULTS;
$page_id = "is_search_adv_result";
$core_tools->manage_location_bar($page_path, $page_label, $page_id, $init, $level);
/***********************************************************/
?>
<h1><img src="<?php echo $_SESSION['urltomodules']."indexing_searching/img/picto_search_b.gif";?>" alt="" /> <?php echo _ADV_SEARCH_TITLE; ?></h1>
<div id="inner_content">
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<p> </p>
<?php echo $_SESSION['error_search'];
$_SESSION['error_search'] = "";
?>
</div>