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
Родитель 4fbab3c12d f12c4f6d11
Коммит b67588d35c
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

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