Index: category.php =================================================================== RCS file: /cvsroot/moodle/moodle/course/category.php,v retrieving revision 1.119 diff -u -r1.119 category.php --- category.php 10 Oct 2007 04:59:35 -0000 1.119 +++ category.php 27 Nov 2007 11:35:37 -0000 @@ -33,7 +33,9 @@ if (!$category = get_record("course_categories", "id", $id)) { error("Category not known!"); } - + + $category->name = format_text($category->name,FORMAT_HTML);//for multilang filter to catch up + if (has_capability('moodle/course:create', $context)) { if ($categoryedit !== -1) { $USER->categoryediting = $categoryedit; @@ -145,7 +147,7 @@ /// Print current category description if (!$creatorediting && $category->description) { print_box_start(); - echo $category->description; + echo format_text($category->description,FORMAT_HTML);//for multilang filter print_box_end(); }