Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
ef2a8467
Commit
ef2a8467
authored
Jul 17, 2012
by
Rocky Duan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix potential <script> tag escape bug
parent
ba6346cb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
common/lib/xmodule/xmodule/seq_module.py
+2
-1
No files found.
common/lib/xmodule/xmodule/seq_module.py
View file @
ef2a8467
...
...
@@ -80,7 +80,8 @@ class SequenceModule(XModule):
# Split </script> tags -- browsers handle this as end
# of script, even if it occurs mid-string. Do this after json.dumps()ing
# so that we can be sure of the quotations being used
params
=
{
'items'
:
json
.
dumps
(
contents
)
.
replace
(
'</script>'
,
'<"+"/script>'
),
import
re
params
=
{
'items'
:
re
.
sub
(
r'</(script)'
,
r'\u003c/\1'
,
json
.
dumps
(
contents
),
flags
=
re
.
IGNORECASE
),
'element_id'
:
self
.
location
.
html_id
(),
'item_id'
:
self
.
id
,
'position'
:
self
.
position
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment