require_login();
}
+ // Check if user can view this category.
+ if (!has_capability('moodle/category:viewhiddencategories', $context)) {
+ $coursecatvisible = $DB->get_field('course_categories', 'visible', array('id' => $context->instanceid));
+ if (!$coursecatvisible) {
+ send_file_not_found();
+ }
+ }
+
$filename = array_pop($args);
$filepath = $args ? '/'.implode('/', $args).'/' : '/';
if (!$file = $fs->get_file($context->id, 'coursecat', 'description', 0, $filepath, $filename) or $file->is_directory()) {