Home
Documentation
Downloads
Demo
Tracker
Development
Translation
Moodle.net
Search
projects
/
moodle.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
216ea39
)
MDL-58092 grading methods: Fix double escape for freq used questions
author
gthomas2
<gthomas@moodlerooms.com>
Mon, 27 Feb 2017 13:49:37 +0000
(13:49 +0000)
committer
Marina Glancy
<marina@moodle.com>
Fri, 24 Mar 2017 05:21:27 +0000
(13:21 +0800)
grade/grading/form/guide/renderer.php
patch
|
blob
|
blame
|
history
diff --git
a/grade/grading/form/guide/renderer.php
b/grade/grading/form/guide/renderer.php
index
a0466f5
..
1292a9e
100644
(file)
--- 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;
}