From 4500aa90a2c10f1aff77fb2d56fbb208c0e202c0 Mon Sep 17 00:00:00 2001 From: Manthan Sharma <143496678+manthan-sharma-23@users.noreply.github.com> Date: Sun, 29 Oct 2023 14:38:50 +0530 Subject: [PATCH] fix sanitization for 1353 --- website/static/vendor/bootstrap/js/bootstrap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/static/vendor/bootstrap/js/bootstrap.js b/website/static/vendor/bootstrap/js/bootstrap.js index 5f06ec2ef..befba8815 100644 --- a/website/static/vendor/bootstrap/js/bootstrap.js +++ b/website/static/vendor/bootstrap/js/bootstrap.js @@ -1576,7 +1576,7 @@ function sanitizeSelector(selector) { Tooltip.prototype.setContent = function () { var $tip = this.tip() - var title = this.getTitle() + var title = escapeHTML(this.getTitle()) $tip.find('.tooltip-inner')[this.options.html ? 'html' : 'text'](title) $tip.removeClass('fade in top bottom left right')