mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-11 18:01:23 +00:00
Fix handling of decoding contacts UID
A problem occurs when the contact UID contains a special character that was HTML encoded (ex: space, &, ").
This commit is contained in:
@@ -117,7 +117,7 @@ function buildUsersTree(treeDiv, response) {
|
||||
function onUserNodeToggle(event) {
|
||||
this.stopObserving("click", onUserNodeToggle);
|
||||
|
||||
var person = this.parentNode.getAttribute("dataname");
|
||||
var person = this.parentNode.getAttribute("dataname").unescapeHTML();
|
||||
|
||||
var url = (UserFolderURLForUser(person) + "foldersSearch"
|
||||
+ "?type=" + window.opener.userFolderType);
|
||||
|
||||
Reference in New Issue
Block a user