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.
16 righe
625 B
16 righe
625 B
<? |
|
$return = false; |
|
if (!empty($sourceID) && !empty($_SESSION["utente"])) { |
|
$round = $pdo->go("SELECT codice_gara FROM b_gare_round WHERE codice = :codice",[":codice"=>$sourceID]); |
|
if ($round->rowCount() > 0) { |
|
$idGara = $round->fetch(PDO::FETCH_ASSOC)["codice_gara"]; |
|
$tmp = gara::init($idGara,$sourceID); |
|
if ($tmp !== false) { |
|
$return = true; |
|
if (isset($operation) && ($operation == "DELETE" || $operation == "SWITCH") && !empty($allegato)) { |
|
$tmp->addToLog($operation,__("Allegato") . " #{$allegato["codice"]}: {$allegato["name"]}"); |
|
} |
|
} |
|
} |
|
} |
|
?>
|
|
|