corrected the setting of fixed flag in JMatch quizzes

This commit is contained in:
gbateson
2006-10-30 08:54:22 +00:00
parent 45c65f2b7e
commit b3abd77235
+1 -1
View File
@@ -724,7 +724,7 @@ class hotpot_xml_quiz_template extends hotpot_xml_template_default {
$str .= "D[$i] = new Array();\n";
$str .= "D[$i][0] = '".$this->js_safe($item['text'][0]['#'], true)."';\n";
$str .= "D[$i][1] = ".($i+1).";\n";
$str .= "D[$i][2] = '".$this->int_value($item['fixed'][0]['#'])."';\n";
$str .= "D[$i][2] = '".(empty($item['fixed'][0]['#']) ? 0 : 1)."';\n";
}
return $str;
}