Identic response are merged
This commit is contained in:
parent
bdba32e543
commit
6d762d3b1d
4 changed files with 8 additions and 7 deletions
|
|
@ -48,6 +48,7 @@ else
|
|||
echo"Dernière chance pour changer d'avis";
|
||||
?></h2>
|
||||
<p>
|
||||
<strong>Proposée par :</strong> <a href="mailto:<?php echo $question->get_writer()->getEmail(); ?>"><?php echo $question->get_writer()->getUsername(); ?></a><br><br>
|
||||
<strong>Cours concerné :</strong> <?php echo $question->getCourse()->getName(); ?><br><br>
|
||||
<strong>Question posée :</strong> <?php echo $question->getQuestion(); ?><br><br>
|
||||
<strong>Réponses valides exhaustives :</strong>
|
||||
|
|
@ -89,7 +90,7 @@ foreach($cs as $c)
|
|||
|
||||
<p id="questionPart">
|
||||
<label id="q" for="question">Quelle est votre question ? </label><br>
|
||||
<textarea id="question" name="question" rows="3" cols="70"><?php echo nl2br(htmlentities($question->getQuestion())); ?></textarea>
|
||||
<textarea id="question" name="question" rows="3" cols="70"><?php echo nl2br(htmlentities(utf8_decode($question->getQuestion()))); ?></textarea>
|
||||
</p>
|
||||
<p id="answerList">
|
||||
<label for="answer">Quelle est la réponse ?</label><br>
|
||||
|
|
|
|||
Reference in a new issue