Skip to content

Commit

Permalink
fixed even one more missing encodeURI calls
Browse files Browse the repository at this point in the history
  • Loading branch information
vlahoda committed Mar 11, 2020
1 parent d31911b commit 926ece2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions search/web/js/admin/rights/rights.js
Original file line number Diff line number Diff line change
Expand Up @@ -260,10 +260,10 @@ AffectedObjectsRights.prototype.openDialog = function(/** array of struct */pids
if (this.id) { url += "&id="+this.id; }

if (this.actions) {
url=url+"&actions={"+reduce(function(base, item, status) {
url=url+"&actions="+encodeURI("{")+reduce(function(base, item, status) {
base = base+item+ (status.last ? "": ";");
return base;
}, "",this.actions)+"}";
}, "",this.actions)+encodeURI("}");
}


Expand Down

0 comments on commit 926ece2

Please sign in to comment.