Skip to content

Commit

Permalink
MDL-9996 - Multiple choice answer box too small in the question editi…
Browse files Browse the repository at this point in the history
…ng form in Moodle 1.8.
  • Loading branch information
tjhunt committed Jun 1, 2007
1 parent f3d2648 commit 21fa536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion question/type/multichoice/edit_multichoice_form.php
Expand Up @@ -33,7 +33,7 @@ function definition_inner(&$mform) {
$gradeoptions = $creategrades->gradeoptionsfull;
$repeated = array();
$repeated[] =& $mform->createElement('header', 'choicehdr', get_string('choiceno', 'qtype_multichoice', '{no}'));
$repeated[] =& $mform->createElement('text', 'answer', get_string('answer', 'quiz'));
$repeated[] =& $mform->createElement('text', 'answer', get_string('answer', 'quiz'), array('size' => 50));
$repeated[] =& $mform->createElement('select', 'fraction', get_string('grade'), $gradeoptions);
$repeated[] =& $mform->createElement('htmleditor', 'feedback', get_string('feedback', 'quiz'));

Expand Down

0 comments on commit 21fa536

Please sign in to comment.