From 61a5434497933553315f2544e66371e4c5c0ea39 Mon Sep 17 00:00:00 2001 From: Yannick Warnier Date: Wed, 21 Nov 2007 16:19:33 +0100 Subject: [PATCH] [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 --- main/exercice/answer.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/exercice/answer.class.php b/main/exercice/answer.class.php index 5d0d140731..0fff8d9b19 100644 --- a/main/exercice/answer.class.php +++ b/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],