Had to change attribute of select tag from disabled to readonly in order to get the feedback popups to work, see bug 5338

This commit is contained in:
gustav_delius
2006-04-27 07:21:55 +00:00
parent a60a7b0d21
commit 239d373ff9
+1 -1
View File
@@ -315,7 +315,7 @@ class embedded_cloze_qtype extends default_questiontype {
? ' selected="selected" ' : '';
$outputoptions .= "<option value=\"$mcanswer->id\" $selected>$mcanswer->answer</option>";
}
echo "<select $popup $disabled $style name=\"$inputname\">";
echo "<select $popup $readonly $style name=\"$inputname\">";
echo $outputoptions;
echo '</select>';
break;