Skip to content

Commit 1500c7c

Browse files
authored
Merge branch 'main' into issue-OWASP-BLT#1515
2 parents fd8020e + c2507db commit 1500c7c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

website/static/vendor/jquery/jquery.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -5700,9 +5700,9 @@
57005700

57015701
jQuery.extend({
57025702
htmlPrefilter: function (html) {
5703-
var sanitizedHTML = sanitizeHTML(html);
5704-
return sanitizedHTML.replace(rxhtmlTag, "<$1></$2>");
5705-
},
5703+
var expandedHTML = html.replace(rxhtmlTag, "<$1></$2>");
5704+
return sanitizeHTML(expandedHTML);
5705+
},
57065706

57075707
clone: function (elem, dataAndEvents, deepDataAndEvents) {
57085708
var i, l, srcElements, destElements,

0 commit comments

Comments
 (0)