Correctly escape filenames in displayFilesAsHTML

This commit is contained in:
n1474335 2017-06-27 14:04:30 +00:00
parent 92018b761d
commit c3469bd545

View File

@ -950,7 +950,7 @@ const Utils = {
const html = "<div class='panel panel-default'>" +
"<div class='panel-heading' role='tab'>" +
"<h4 class='panel-title'>" +
file.fileName +
Utils.escapeHtml(file.fileName) +
// The following line is for formatting when HTML is stripped
"<span style='display: none'>\n0 bytes\n</span>" +
"</h4>" +