##// END OF EJS Templates
changelog: escape the graph branch name to prevent XSS.
marcink -
r2994:6936fe23 default
parent child Browse files
Show More
@@ -89,7 +89,7 b' class RepoChangelogView(RepoAppView):'
89 89 data = dict(
90 90 raw_id=commit.raw_id,
91 91 idx=commit.idx,
92 branch=commit.branch,
92 branch=h.escape(commit.branch),
93 93 )
94 94 if parents:
95 95 data['parents'] = [
General Comments 0
You need to be logged in to leave comments. Login now