Skip to content
Snippets Groups Projects
Commit b67588d3 authored by Morris Jobke's avatar Morris Jobke
Browse files

Merge pull request #9048 from owncloud/fix_9041

format group or username for delete notification, fixes #9041
parents 4fbab3c1 f12c4f6d
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment