From a8d4abf091437afc4b641e2ca4b1140df1dc4635 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1igo=20Zendegi?= Date: Wed, 14 Apr 2021 11:07:27 +0200 Subject: [PATCH] MDL-70616 gradingform_rubric: Filters not applied to rubric name --- grade/grading/manage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grade/grading/manage.php b/grade/grading/manage.php index 2871a76388a..0491d89195b 100644 --- a/grade/grading/manage.php +++ b/grade/grading/manage.php @@ -231,7 +231,7 @@ if (!empty($method)) { } else { $tag = html_writer::tag('span', get_string('statusdraft', 'core_grading'), array('class' => 'status draft')); } - echo $output->heading(s($definition->name) . ' ' . $tag, 3, 'definition-name'); + echo $output->heading(format_string($definition->name) . ' ' . $tag, 3, 'definition-name'); echo $output->box($controller->render_preview($PAGE), 'definition-preview'); } }