diff --git a/gestion/saisieVotes.php b/gestion/saisieVotes.php index cdb0105..6435451 100644 --- a/gestion/saisieVotes.php +++ b/gestion/saisieVotes.php @@ -7,7 +7,7 @@ require_once 'fonctions.inc.php'; $path = $_SERVER["PHP_SELF"]; $db = new db(); -$idVotation = getpost("id"); +$idVotation = getpost("idVotation"); $method = getpost("method"); $libelle = getpost("libelle"); diff --git a/include/fonctions.inc.php b/include/fonctions.inc.php index ed669a4..e4aeb3f 100644 --- a/include/fonctions.inc.php +++ b/include/fonctions.inc.php @@ -57,7 +57,7 @@ function choixVote($path, $idVotation, $confirm=false) print ''; foreach($votes as $key => $value ) { - print ' ' . $value["candidat"] . '
'; + print ' ' . $value["libelle"] . '
'; } // TODO confirmation du choix par javascript si $confirm = true @@ -88,7 +88,7 @@ function choixVotation($path, $methode = 2, $confirm = true) //2 = toutes les v print ''; foreach($votations as $key => $value ) { - print ' ' . $value["titre"] . ' :' . $value["libelle"] . '
'; + print ' ' . $value["titre"] . ' :' . $value["libelle"] . '
'; } // TODO confirmation du choix par javascript si $confirm = true