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.
18 righe
445 B
18 righe
445 B
<? |
|
$show = false; |
|
if (isset($record)) { |
|
foreach($lotti as $lotto) { |
|
if ($gara->setLotto($lotto["codice"])) { |
|
$partecipanti = $gara->getPartecipanti(); |
|
if (!empty($partecipanti)) { |
|
foreach($partecipanti AS $partecipante) { |
|
if (!empty($partecipante["codice_operatore"])) { |
|
$show = true; break(2); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
$gara->lotto = null; |
|
} |
|
?>
|
|
|