From 3f4a9df9f7cf0df2c623857e4e4c39d37269eb3b Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Wed, 19 Feb 2014 00:10:47 +0100 Subject: [PATCH] MDL-43265 question: incorrect closing parenthesis --- question/type/edit_question_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/question/type/edit_question_form.php b/question/type/edit_question_form.php index 372319b9387..c1eff4c719c 100644 --- a/question/type/edit_question_form.php +++ b/question/type/edit_question_form.php @@ -181,7 +181,7 @@ abstract class question_edit_form extends question_wizard_form { } $mform->addElement('text', 'name', get_string('questionname', 'question'), - array('size' => 50, 'maxlength' => 255))); + array('size' => 50, 'maxlength' => 255)); $mform->setType('name', PARAM_TEXT); $mform->addRule('name', null, 'required', null, 'client'); -- 2.11.4.GIT