Skip to content

Commit

Permalink
Escape HTML when showing tags in @@fc-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Feb 12, 2024
1 parent 3fa0d14 commit e6bf43a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plone/app/content/browser/contents/templates/tags.pt
Expand Up @@ -7,7 +7,7 @@
_.each(item.Subject, function(tag) {
if(tags.indexOf(tag) === -1){
tags.push(tag);
%><option value="<%= tag %>"><%= tag %></option>
%><option value="<%- tag %>"><%- tag %></option>
<%
}
});
Expand Down

0 comments on commit e6bf43a

Please sign in to comment.