mirror of
https://github.com/moodle/moodle.git
synced 2025-08-03 08:09:47 +02:00
MDL-24058 removing forgotten stripslashes from gradebook, no magic quotes used any more
This commit is contained in:
parent
7270479f7d
commit
e6fec85d61
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ class grade_report_grader extends grade_report {
|
|||
if (empty($trimmed)) {
|
||||
$feedback = NULL;
|
||||
} else {
|
||||
$feedback = stripslashes($postedvalue);
|
||||
$feedback = $postedvalue;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue