mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
MDL-39342 stop users entering too long matching answers.
Since they lead to an ugly DB error.
This commit is contained in:
parent
cf5a3296c4
commit
cbe0a1f60a
1 changed files with 1 additions and 1 deletions
|
@ -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';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue