Merge branch 'fix-graph-xss' into 'v1.1.x'

Fix an XSS in the result graph

See merge request framasoft/framadate/framadate!493
This commit is contained in:
Thomas Citharel 2021-10-18 14:12:34 +00:00
commit 6e40f1cf02
2 changed files with 5 additions and 1 deletions

View File

@ -73,6 +73,10 @@ function smarty_modifier_addslashes_single_quote($string) {
return addcslashes($string, '\\\'');
}
function smarty_modifier_addslashes($string) {
return addslashes($string);
}
function smarty_modifier_html($html) {
return Utils::htmlEscape($html);
}

View File

@ -282,7 +282,7 @@
});
var cols = [
{foreach $slots as $id=>$slot}
$('<div/>').html('{$slot->title|markdown:true}').text(),
"{$slot->title|markdown:true|addslashes}",
{/foreach}
];