diff options
-rw-r--r-- | settings/js/users/deleteHandler.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js index 9cbe7cd514d..56355317f8d 100644 --- a/settings/js/users/deleteHandler.js +++ b/settings/js/users/deleteHandler.js @@ -93,8 +93,8 @@ DeleteHandler.prototype.showNotification = function() { this.hideNotification(); } $('#notification').data(this.notificationDataID, true); - var msg = this.notificationMessage.replace(this.notificationPlaceholder, - this.oidToDelete); + var msg = this.notificationMessage.replace( + this.notificationPlaceholder, escapeHTML(this.oidToDelete)); this.notifier.showHtml(msg); } }; |