mirror of
https://github.com/nextcloud/server.git
synced 2026-03-27 12:54:24 -04:00
Merge pull request #9048 from owncloud/fix_9041
format group or username for delete notification, fixes #9041
This commit is contained in:
commit
b67588d35c
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue