From e0296f37560b10d555aafaee80464cbfdf557ff4 Mon Sep 17 00:00:00 2001 From: Daniel Tartavel Date: Thu, 29 Sep 2022 14:04:15 +0200 Subject: [PATCH] debug --- gestion/saisieVotes.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gestion/saisieVotes.php b/gestion/saisieVotes.php index 0cc23ee..520eccd 100644 --- a/gestion/saisieVotes.php +++ b/gestion/saisieVotes.php @@ -23,7 +23,7 @@ if (!empty($idVotation)) }else { $_SESSION["idVotation"] = $idVotation; - $votationName = $db->queryVotationName($db, $idVotation); + $votationName = $db->queryVotationName($idVotation); } }else { @@ -32,7 +32,7 @@ if (!empty($idVotation)) if (!empty($_SESSION["idVotation"])) { $idVotation = $_SESSION["idVotation"]; - $votationName = $db->queryVotationName($db, $idVotation); + $votationName = $db->queryVotationName($idVotation); } } } @@ -45,7 +45,7 @@ print('

print('
'); -$votes = $db->queryVotes($db, $idVotation); +$votes = $db->queryVotes($idVotation); if (!empty($votes)) { print("
");