$mform->addElement('editor', 'description_editor', get_string('description'), null,
$this->get_description_editor_options());
+ $mform->setType('description_editor', PARAM_RAW);
if (!empty($CFG->allowcategorythemes)) {
$themes = array(''=>get_string('forceno'));
return array(
'maxfiles' => EDITOR_UNLIMITED_FILES,
'maxbytes' => $CFG->maxbytes,
- 'trusttext' => true,
+ 'trusttext' => false,
+ 'noclean' => true,
'context' => $context,
'subdirs' => file_area_contains_subdirs($context, 'coursecat', 'description', $itemid),
);