Skip to content

Commit

Permalink
MDL-6386 - Regression from MDL-6462, lost stripslashes in CLOZE quest…
Browse files Browse the repository at this point in the history
…ion,

thanks to Joseph Joseph Rézeau  for his attention to this issue
  • Loading branch information
poltawski committed Mar 17, 2007
1 parent 843808a commit 8a08a04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion question/type/multianswer/questiontype.php
Expand Up @@ -232,7 +232,7 @@ function print_question_formulation_and_controls(&$question, &$state, $cmoptions

$inputname = $nameprefix.$positionkey;
if (isset($state->responses[$positionkey])) {
$response = $state->responses[$positionkey];
$response = stripslashes($state->responses[$positionkey]);
} else {
$response = null;
}
Expand Down

0 comments on commit 8a08a04

Please sign in to comment.