Skip to content
Snippets Groups Projects
Commit 0ceb4891 authored by Simon Leblanc's avatar Simon Leblanc
Browse files

Autoriser un utilisateur a pouvoir mettre des commentaires pour d'autres utilisateurs

parent 497e72bf
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,7 @@ if(issetAndNoEmpty('export', $_GET) && $dsondage !== false) { ...@@ -89,7 +89,7 @@ if(issetAndNoEmpty('export', $_GET) && $dsondage !== false) {
// quand on ajoute un commentaire utilisateur // quand on ajoute un commentaire utilisateur
if(isset($_POST['ajoutcomment']) || isset($_POST['ajoutcomment_x'])) { if(isset($_POST['ajoutcomment']) || isset($_POST['ajoutcomment_x'])) {
if (isset($_SESSION['nom'])) { if (isset($_SESSION['nom']) && issetAndNoEmpty('commentuser') === false) {
// Si le nom vient de la session, on le de-htmlentities // Si le nom vient de la session, on le de-htmlentities
$comment_user = html_entity_decode($_SESSION['nom'], ENT_QUOTES, 'UTF-8'); $comment_user = html_entity_decode($_SESSION['nom'], ENT_QUOTES, 'UTF-8');
} elseif(issetAndNoEmpty('commentuser')) { } elseif(issetAndNoEmpty('commentuser')) {
...@@ -636,9 +636,12 @@ if ($comment_user->RecordCount() != 0) { ...@@ -636,9 +636,12 @@ if ($comment_user->RecordCount() != 0) {
print '<div class="addcomment">' .'<p>' ._("Add a comment in the poll:") . '</p>' . "\n"; print '<div class="addcomment">' .'<p>' ._("Add a comment in the poll:") . '</p>' . "\n";
if (isset($_SESSION['nom']) === false) { if (isset($_SESSION['nom']) === false) {
echo _("Name") .' : '; $nom = '';
echo '<input type="text" name="commentuser" maxlength="64" /><br>'."\n"; } else {
} $nom = stripslashes($_SESSION['nom']);
}
echo _("Name") .' : ';
echo '<input type="text" name="commentuser" maxlength="64" value="'.$nom.'" /><br>'."\n";
echo '<textarea name="comment" rows="2" cols="40"></textarea>'."\n"; echo '<textarea name="comment" rows="2" cols="40"></textarea>'."\n";
echo '<input type="image" name="ajoutcomment" value="Ajouter un commentaire" src="images/accept.png" alt="Valider"><br>'."\n"; echo '<input type="image" name="ajoutcomment" value="Ajouter un commentaire" src="images/accept.png" alt="Valider"><br>'."\n";
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment