Skip to content

Commit 926ece2

Browse files
committed
fixed even one more missing encodeURI calls
1 parent d31911b commit 926ece2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

search/web/js/admin/rights/rights.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,10 +260,10 @@ AffectedObjectsRights.prototype.openDialog = function(/** array of struct */pids
260260
if (this.id) { url += "&id="+this.id; }
261261

262262
if (this.actions) {
263-
url=url+"&actions={"+reduce(function(base, item, status) {
263+
url=url+"&actions="+encodeURI("{")+reduce(function(base, item, status) {
264264
base = base+item+ (status.last ? "": ";");
265265
return base;
266-
}, "",this.actions)+"}";
266+
}, "",this.actions)+encodeURI("}");
267267
}
268268

269269

0 commit comments

Comments
 (0)