This commit is contained in:
Andrew Nicols 2020-08-20 07:51:30 +08:00
commit 06f900daff

View File

@ -75,6 +75,7 @@ class core_course_editcategory_form extends moodleform {
$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'));
@ -105,7 +106,8 @@ class core_course_editcategory_form extends moodleform {
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),
);