We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d31911b commit 926ece2Copy full SHA for 926ece2
search/web/js/admin/rights/rights.js
@@ -260,10 +260,10 @@ AffectedObjectsRights.prototype.openDialog = function(/** array of struct */pids
260
if (this.id) { url += "&id="+this.id; }
261
262
if (this.actions) {
263
- url=url+"&actions={"+reduce(function(base, item, status) {
+ url=url+"&actions="+encodeURI("{")+reduce(function(base, item, status) {
264
base = base+item+ (status.last ? "": ";");
265
return base;
266
- }, "",this.actions)+"}";
+ }, "",this.actions)+encodeURI("}");
267
}
268
269
0 commit comments