From 9da321f728a245ab229691e5c9cae789bd76c437 Mon Sep 17 00:00:00 2001 From: skodak Date: Thu, 24 Jul 2008 06:02:31 +0000 Subject: [PATCH] MDL-15804 smaller online assignment text box size; merged from MOODLE_19_STABLE --- mod/assignment/type/online/assignment.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/assignment/type/online/assignment.class.php b/mod/assignment/type/online/assignment.class.php index f047d860b4..df0b3e8a61 100644 --- a/mod/assignment/type/online/assignment.class.php +++ b/mod/assignment/type/online/assignment.class.php @@ -267,7 +267,7 @@ class mod_assignment_online_edit_form extends moodleform { $mform =& $this->_form; // visible elements - $mform->addElement('htmleditor', 'text', get_string('submission', 'assignment'), array('cols'=>85, 'rows'=>30)); + $mform->addElement('htmleditor', 'text', get_string('submission', 'assignment'), array('cols'=>60, 'rows'=>30)); $mform->setType('text', PARAM_RAW); // to be cleaned before display $mform->setHelpButton('text', array('reading', 'writing', 'richtext'), false, 'editorhelpbutton'); $mform->addRule('text', get_string('required'), 'required', null, 'client'); -- 2.39.5