MDL-20402 - update bulk user action messages from regular textarea to HTML editor.

This commit is contained in:
Rossiani Wijaya
2010-01-13 07:56:20 +00:00
parent 1ddd8283f9
commit 3de4198a4f
+1 -1
View File
@@ -9,7 +9,7 @@ class user_message_form extends moodleform {
$mform->addElement('header', 'general', get_string('message', 'message'));
$mform->addElement('textarea', 'messagebody', get_string('messagebody'), array('rows'=>15, 'cols'=>60));
$mform->addElement('htmleditor', 'messagebody', get_string('messagebody'), array('rows'=>15, 'cols'=>60));
$mform->addRule('messagebody', '', 'required', null, 'client');
$mform->setHelpButton('messagebody', array('writing', 'reading', 'questions', 'richtext'), false, 'editorhelpbutton');
$mform->addElement('format', 'format', get_string('format'));