diff --git a/gestionsite/envoiMailing.php b/gestionsite/envoiMailing.php
index 569183e..6a3c67e 100644
--- a/gestionsite/envoiMailing.php
+++ b/gestionsite/envoiMailing.php
@@ -52,7 +52,7 @@ if (empty($idVotation))
$sujet = "[LALIS] Convocation à un vote";
$textDebut = "Bonjour,\nL'association Lalis vous invite à un vote du " . formatteDate('fr', $votation['dd'], 'Europe/Paris') . " 0h00 au " . formatteDate('fr', $votation['df'], 'Europe/Paris') . " minuit.\nMotif du vote : " . $votation['libelle'] . "\n\nPour voter, cliquez sur le lien suivant :\nhttps://lalis69.ddns.net:10443/vote.form.php?v=" . $idVotation . "&id=";
- $textFin = "\n\nNous vous rappelons que pour pouvoir voter, vous devez être à jour de cotisation à la date du vote.\nLes résultats seront visibles dès le " . formatteDate('fr', $votation['tf'], 'Europe/Paris') . " par le lien suivant : https://lalis69.ddns.net:10443/vote.resultat.php?id=" . $idVotation . "\n\nPour Lalis, Le Président, David Larochette.";
+ $textFin = "\n\nNous vous rappelons que pour pouvoir voter, vous devez être à jour de cotisation à la date du vote.\nLes résultats seront visibles dès le " . formatteDate('fr', $votation['tf'], 'Europe/Paris') . " par le lien suivant : https://lalis69.ddns.net:10443/vote.resultat.php?id=" . $idVotation . "\nAttention: ce lien contient votre identifiant de vote, ne le transmettez, sinon la personne pourra voter à votre place.\n\nPour Lalis, Le Président, David Larochette.";
foreach($adherents as $adherent)
{
$text = $textDebut . base64_encode($adherent['login']) . $textFin;
diff --git a/gestionsite/modifVotation.php b/gestionsite/modifVotation.php
index e10a69a..2e49fa3 100644
--- a/gestionsite/modifVotation.php
+++ b/gestionsite/modifVotation.php
@@ -1,9 +1,9 @@
protect($idVotation); // clotûre
+ $query = "UPDATE liste_votations SET status=0 WHERE id='" . $db->protect($idVotation) . "'"; // clotûre
$db->query($query);
}
+ }elseif ($action == "modif")
+ {
+ //TODO
+ votationForm($path, $titre, $libelle, $dateDebut, $dateFin, $status);
}
+
}
print('
diff --git a/gestionsite/saisieVotation.php b/gestionsite/saisieVotation.php
new file mode 100644
index 0000000..cea8887
--- /dev/null
+++ b/gestionsite/saisieVotation.php
@@ -0,0 +1,32 @@
+
+
+
+
+