This commit is contained in:
Arthur Schiwon 2014-06-16 13:46:31 +02:00
parent 3ebb1565a7
commit f12c4f6d11
1 changed files with 2 additions and 2 deletions

View File

@ -93,8 +93,8 @@ DeleteHandler.prototype.showNotification = function() {
this.hideNotification(); this.hideNotification();
} }
$('#notification').data(this.notificationDataID, true); $('#notification').data(this.notificationDataID, true);
var msg = this.notificationMessage.replace(this.notificationPlaceholder, var msg = this.notificationMessage.replace(
escapeHTML(this.oidToDelete)); this.notificationPlaceholder, escapeHTML(this.oidToDelete));
this.notifier.showHtml(msg); this.notifier.showHtml(msg);
} }
}; };