escape before output, fixes #9041

This commit is contained in:
Arthur Schiwon 2014-06-16 13:44:41 +02:00
parent 4fbab3c12d
commit 3ebb1565a7
1 changed files with 1 additions and 1 deletions

View File

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