mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 11:55:24 +00:00
Fix URL encoding of user id in UIxAclEditor.js
This commit is contained in:
@@ -41,7 +41,7 @@ function addUser(userName, userID, type) {
|
||||
var url = window.location.href;
|
||||
var elements = url.split("/");
|
||||
elements[elements.length-1] = ("addUserInAcls?uid="
|
||||
+ userID);
|
||||
+ encodeURIComponent(userID));
|
||||
triggerAjaxRequest(elements.join("/"), addUserCallback, newNode);
|
||||
result = true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user