]> git.mjollnir.org Git - moodle.git/commitdiff
Had to change attribute of select tag from disabled to readonly in order to get the...
authorgustav_delius <gustav_delius>
Thu, 27 Apr 2006 07:21:55 +0000 (07:21 +0000)
committergustav_delius <gustav_delius>
Thu, 27 Apr 2006 07:21:55 +0000 (07:21 +0000)
question/type/multianswer/questiontype.php

index bbe3fa75cffa6ad964c1999ea8ad0870bf658b1a..2ce32cbb9751ebad744b417f8eaf61a55fad8258 100644 (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;