diff --git a/gestion/saisieCandidats.php b/gestion/saisieCandidats.php
index 604b8ed..a1ca9ed 100644
--- a/gestion/saisieCandidats.php
+++ b/gestion/saisieCandidats.php
@@ -40,16 +40,17 @@ if (!empty($candidat))
$voteName = $db->queryVoteName($idVote);
$candidatsList = $db->queryCandidatsList($idVotation, $idVote);
- print('
Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"
');
+ print('Nouveau candidat pour le vote "' . $voteName . '" de la votation "' . $votationName . '"
' . EOLH);
if (empty($candidatsList))
{
print("Aucun candidats saisi pour l'instant" . EOLH);
}else
{
- print('Liste des candidats');
+ print('Liste des candidats
');
foreach($candidatsList as $line)
{
- print($line["libelle"] . EOLH);
+ print("" . $line["candidat"] . "
");
+ print(nl2br($line["libelle"]) . EOLH);
}
}
candidatsForm($path, $idVotation, $idVote);