Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
moodle_mod-hvp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
elc
moodle_mod-hvp
Commits
2b96131b
Commit
2b96131b
authored
5 years ago
by
Andre Yamin
Browse files
Options
Downloads
Patches
Plain Diff
Fix issue with Totara 13 XSS hardening
parent
ca879351
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib.php
+4
-0
4 additions, 0 deletions
lib.php
with
4 additions
and
0 deletions
lib.php
+
4
−
0
View file @
2b96131b
...
@@ -316,6 +316,10 @@ function hvp_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload
...
@@ -316,6 +316,10 @@ function hvp_pluginfile($course, $cm, $context, $filearea, $args, $forcedownload
return
false
;
// No such file.
return
false
;
// No such file.
}
}
// Totara: use allowxss option to prevent application/x-javascript mimetype
// from being converted to application/x-forcedownload.
$options
[
'allowxss'
]
=
'1'
;
send_stored_file
(
$file
,
86400
,
0
,
$forcedownload
,
$options
);
send_stored_file
(
$file
,
86400
,
0
,
$forcedownload
,
$options
);
return
true
;
return
true
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment