Merge pull request #9048 from owncloud/fix_9041

format group or username for delete notification, fixes #9041
This commit is contained in:
Morris Jobke 2014-06-16 15:23:08 +02:00
commit b67588d35c
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}
};