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('
"); |