fix:#8274 Don't escape HTML in manage users (#8275)

Perhaps the HTML for managing groups should ba actually rendered as HTML to serve its function. fixes #8274
This commit is contained in:
Opliko
2020-04-29 02:32:15 +02:00
committed by GitHub
parent 0c7c70edaf
commit 4855f1deca

View File

@@ -73,7 +73,7 @@ define('admin/manage/users', ['translator', 'benchpress', 'autocomplete'], funct
}
Benchpress.parse('admin/partials/manage_user_groups', data, function (html) {
var modal = bootbox.dialog({
message: utils.escapeHTML(html),
message: html,
title: '[[admin/manage/users:manage-groups]]',
onEscape: true,
});