mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 11:11:39 +09:00
Fix incorrect escape in domain list screen
This commit is contained in:
parent
2b8373a5eb
commit
9e51100c1d
1 changed files with 1 additions and 1 deletions
|
|
@ -124,7 +124,7 @@
|
|||
event.preventDefault();
|
||||
var domain = $(this).data("domain");
|
||||
var domain_srl = $(this).data("domain-srl");
|
||||
if (confirm({$lang->cmd_delete_domain|json} + "\n" + domain)) {
|
||||
if (confirm({$lang->cmd_delete_domain|json|noescape} + "\n" + domain)) {
|
||||
exec_json('admin.procAdminDeleteDomain', { domain_srl: domain_srl }, function() {
|
||||
window.location.reload();
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue