diff --git a/mod/forum/post_form.php b/mod/forum/post_form.php index 503c712099a..86cd3068275 100644 --- a/mod/forum/post_form.php +++ b/mod/forum/post_form.php @@ -25,7 +25,7 @@ class mod_forum_post_form extends moodleform { $mform->setType('subject', PARAM_TEXT); $mform->addRule('subject', get_string('required'), 'required', null, 'client'); - $mform->addElement('htmleditor', 'message', get_string('message', 'forum'), array('cols'=>85, 'rows'=>30)); + $mform->addElement('htmleditor', 'message', get_string('message', 'forum'), array('cols'=>50, 'rows'=>30)); $mform->setType('message', PARAM_RAW); $mform->addRule('message', get_string('required'), 'required', null, 'client'); $mform->setHelpButton('message', array('reading', 'writing', 'questions', 'richtext'), false, 'editorhelpbutton');