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.
24 righe
838 B
24 righe
838 B
<? |
|
$show = false; |
|
if (!empty($concorso)) { |
|
foreach($lotti AS $lotto) { |
|
if ($concorso->setLotto($lotto["codice"])) { |
|
$partecipanti = $concorso->getPartecipanti(); |
|
if (!empty($partecipanti)) { |
|
foreach($partecipanti AS $partecipante) { |
|
if (empty($partecipante["codice_operatore"])) { |
|
if (strpos($partecipante["encryptedData"],$concorso->v2placeholder) === 0) { |
|
$alertManager->addDangerAlert(__("Lotto") . " " . $lotto["numero"] . " - " . __("Partecipanti non adeguati alla nuova versione"),$hrefComando."&codice_lotto=".$lotto["codice"]); |
|
$status_conversione = "status-border-danger"; |
|
$show = true; |
|
break; |
|
} |
|
} |
|
} |
|
} |
|
} |
|
} |
|
$concorso->lotto = null; |
|
} |
|
|
|
?>
|