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:
18619d8
)
MDL-46227 Fix XSS in scheduled tasks
author
Skylar Kelty
<S.Kelty@kent.ac.uk>
Wed, 2 Jul 2014 07:35:24 +0000
(08:35 +0100)
committer
Marina Glancy
<marina@moodle.com>
Tue, 8 Jul 2014 05:37:13 +0000
(13:37 +0800)
admin/tool/task/scheduledtasks.php
patch
|
blob
|
blame
|
history
diff --git
a/admin/tool/task/scheduledtasks.php
b/admin/tool/task/scheduledtasks.php
index
768d4bc
..
3963aaf
100644
(file)
--- a/
admin/tool/task/scheduledtasks.php
+++ b/
admin/tool/task/scheduledtasks.php
@@
-104,11
+104,11
@@
if ($mform && ($mform->is_cancelled() || !empty($CFG->preventscheduledtaskchange
} else {
echo $OUTPUT->header();
- $error = optional_param('error', '', PARAM_
RAW
);
+ $error = optional_param('error', '', PARAM_
NOTAG
);
if ($error) {
echo $OUTPUT->notification($error, 'notifyerror');
}
- $success = optional_param('success', '', PARAM_
RAW
);
+ $success = optional_param('success', '', PARAM_
NOTAG
);
if ($success) {
echo $OUTPUT->notification($success, 'notifysuccess');
}