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
450 B
21 righe
450 B
<? |
|
if (isset($gara)) { |
|
if ($gara->round["numero"] < $gara->info["fase_attiva"]) { |
|
$show = false; |
|
} |
|
if ($show) { |
|
if (!empty($lotti)) { |
|
$show = false; |
|
foreach($lotti AS $lotto) { |
|
$gara->setLotto($lotto["codice"]); |
|
if (!empty($gara->getPartecipanti())) { |
|
$show = true; |
|
} |
|
} |
|
$gara->lotto = null; |
|
} else { |
|
$show = false; |
|
} |
|
} |
|
} |
|
?>
|