Browse Source

escape before output, fixes #9041

remotes/origin/ldap_group_count
Arthur Schiwon 12 years ago
parent
commit
3ebb1565a7
  1. 2
      settings/js/users/deleteHandler.js

2
settings/js/users/deleteHandler.js

@ -94,7 +94,7 @@ DeleteHandler.prototype.showNotification = function() {
}
$('#notification').data(this.notificationDataID, true);
var msg = this.notificationMessage.replace(this.notificationPlaceholder,
this.oidToDelete);
escapeHTML(this.oidToDelete));
this.notifier.showHtml(msg);
}
};

Loading…
Cancel
Save