diff --git a/settings/js/users/deleteHandler.js b/settings/js/users/deleteHandler.js index 2d8b4499ee..56355317f8 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, - escapeHTML(this.oidToDelete)); + var msg = this.notificationMessage.replace( + this.notificationPlaceholder, escapeHTML(this.oidToDelete)); this.notifier.showHtml(msg); } };