Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
21 righe
769 B
21 righe
769 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
$id_modulo = "log"; |
|
$cmd_info = concorso::getInfoModulo($id_modulo); |
|
$error = true; |
|
if (!empty($_SESSION["utente"]) && $_SESSION["utente"]->permission($radice,$_GET["codice"],$id_modulo) && $_SESSION["utente"]->permission($cmd_info["modulo_riferimento"])) { |
|
$concorso = concorso::init($_GET["codice"]); |
|
if (!empty($concorso) && !empty($_GET["codice_meeting"])) { |
|
$conference = $concorso->getConferences($_GET["codice_meeting"]); |
|
if (!empty($conference)) { |
|
$error = false; |
|
conferenceManager::printLog($conference["codice"]); |
|
} |
|
} |
|
} |
|
if ($error) { |
|
header('HTTP/1.0 403 Forbidden'); |
|
die(); |
|
} |
|
?>
|