Merge branch 'MDL-39342' of git://github.com/timhunt/moodle

This commit is contained in:
Damyon Wiese 2013-04-29 15:35:40 +08:00
commit 9b77b2011d

View File

@ -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';