diff --git a/main/exercise/fill_blanks.class.php b/main/exercise/fill_blanks.class.php index 059246beac..649d0a9120 100755 --- a/main/exercise/fill_blanks.class.php +++ b/main/exercise/fill_blanks.class.php @@ -675,13 +675,13 @@ class FillBlanks extends Question }, $listSeveral ); - $studentAnswer = htmlspecialchars($studentAnswer); + //$studentAnswer = htmlspecialchars($studentAnswer); $result = in_array($studentAnswer, $listSeveral); break; case self::FILL_THE_BLANK_STANDARD: default: $correctAnswer = api_html_entity_decode($correctAnswer); - $studentAnswer = htmlspecialchars($studentAnswer); + //$studentAnswer = htmlspecialchars($studentAnswer); $result = $studentAnswer == self::trimOption($correctAnswer); break; }