diff --git a/question/type/match/edit_match_form.php b/question/type/match/edit_match_form.php index dc9ea7032f7..5ee734a8804 100644 --- a/question/type/match/edit_match_form.php +++ b/question/type/match/edit_match_form.php @@ -44,7 +44,7 @@ class qtype_match_edit_form extends question_edit_form { $repeated[] = $mform->createElement('editor', 'subquestions', $label, array('rows'=>3), $this->editoroptions); $repeated[] = $mform->createElement('text', 'subanswers', - get_string('answer', 'question'), array('size'=>50)); + get_string('answer', 'question'), array('size' => 50, 'maxlength' => 255)); $repeatedoptions['subquestions']['type'] = PARAM_RAW; $repeatedoptions['subanswers']['type'] = PARAM_TEXT; $answersoption = 'subquestions';