MDL-58092 grading methods: Fix double escape for freq used questions

This commit is contained in:
gthomas2
2017-03-24 13:21:27 +08:00
committed by Marina Glancy
parent 216ea39be7
commit cc65414a04
+1 -1
View File
@@ -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;
}