[svn r13732] Added addslashes() escaping to fill_in_blank answers to avoid bad comparisons between right answers and user-given answers when containing apostrophes - see FS#2064

skala
Yannick Warnier 18 years ago
parent 275c51cfd5
commit 61a5434497
  1. 4
      main/exercice/answer.class.php

@ -23,7 +23,7 @@
* 5 arrays are created to receive the attributes of each answer belonging to a specified question
* @package dokeos.exercise
* @author Olivier Brouckaert
* @version $Id: answer.class.php 10793 2007-01-19 09:17:15Z elixir_inter $
* @version $Id: answer.class.php 13732 2007-11-21 15:19:33Z yannoo $
*/
@ -225,7 +225,7 @@ $this->hotspot_coordinates[$i]=$object->hotspot_coordinates;
if(!empty($this->answer[$i])){
$list[] = array(
'id'=>$i,
'answer'=>$this->answer[$i],
'answer'=>addslashes($this->answer[$i]),
'comment'=>$this->comment[$i],
'grade' => $this->weighting[$i],
'hotspot_coord' => $this->hotspot_coordinates[$i],

Loading…
Cancel
Save