Skip to content

Commit

Permalink
Fixed issue while displaying confirm message before deletion.
Browse files Browse the repository at this point in the history
  • Loading branch information
tonioo committed Jan 23, 2023
1 parent c1db80f commit 7b7b6ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modoboa/admin/static/admin/js/admin.js
Expand Up @@ -152,7 +152,7 @@ Domains.prototype = {
: gettext("This operation will remove all data associated to this domain, excepting accounts.");

$("a[name=deldomain]").confirm({
question: function() { return this.$element.attr('title'); },
question: function() { return htmlEncode(this.$element.attr('title')); },
method: "POST",
warning: warnmsg,
checkboxes: deloptions,
Expand Down

0 comments on commit 7b7b6ba

Please sign in to comment.