Merge pull request #9048 from owncloud/fix_9041

format group or username for delete notification, fixes #9041
remotes/origin/ldap_group_count
Morris Jobke 11 years ago
commit b67588d35c
  1. 4
      settings/js/users/deleteHandler.js

@ -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…
Cancel
Save