From cc65414a044b2cda6b0d2131a46dbc29ef59673c Mon Sep 17 00:00:00 2001 From: gthomas2 Date: Mon, 27 Feb 2017 13:49:37 +0000 Subject: [PATCH] MDL-58092 grading methods: Fix double escape for freq used questions --- grade/grading/form/guide/renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grade/grading/form/guide/renderer.php b/grade/grading/form/guide/renderer.php index a0466f5d2f2..1292a9ea75e 100644 --- a/grade/grading/form/guide/renderer.php +++ b/grade/grading/form/guide/renderer.php @@ -249,7 +249,7 @@ class gradingform_guide_renderer extends plugin_renderer_base { foreach ($comments as $id => $comment) { $commentoption = new stdClass(); $commentoption->id = $id; - $commentoption->description = s($comment['description']); + $commentoption->description = $comment['description']; $commentoptions[] = $commentoption; }