Skip to content

Commit

Permalink
fix: sanitize dialog title
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepDiver1975 committed Jan 30, 2024
1 parent ced64df commit 1caa7b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/js/jquery.ocdialog.js
Expand Up @@ -75,7 +75,7 @@
this.$title.text(value);
} else {
var $title = $('<h3 class="oc-dialog-title">' +
value +
escapeHTML(value) +
'</h3>');
this.$title = $title.prependTo(this.$dialog);
}
Expand Down

0 comments on commit 1caa7b4

Please sign in to comment.