From ad2f4cff93cef50f4e36aea6b0a6505b5a9ae126 Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Thu, 22 Feb 2007 03:21:49 +0000 Subject: [PATCH] fix for MDL-8577, message textarea too big to fit --- mod/forum/post_form.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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');