mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-19 21:53:19 +00:00
Fix folder's name when subscribing to a folder
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
Bug fixes
|
||||
- fixed freebusy lookup with "Show time as busy" (#2930)
|
||||
- don't escape <br>'s in a card's note field
|
||||
- fixed folder's display name when subscribing to a folder
|
||||
- fixed folder's display name when the active user subscribes another user to one of her/his folders
|
||||
|
||||
2.2.9a (2014-09-29)
|
||||
|
||||
@@ -199,7 +199,7 @@ function addFolderBranchToTree(tree, user, folder, nodeId, subId, isLast) {
|
||||
node._ls = isLast;
|
||||
|
||||
var content = tree.node(node, (nodeId + subId), null);
|
||||
content._formattedName = folder.formattedName;
|
||||
content.displayName = folder.displayName;
|
||||
|
||||
return content;
|
||||
}
|
||||
@@ -228,7 +228,7 @@ function onConfirmFolderSelection(event) {
|
||||
folderName = description.replace(/>,.*$/, ">", "g");
|
||||
}
|
||||
else {
|
||||
folderName = node._formattedName;
|
||||
folderName = node.displayName;
|
||||
}
|
||||
var data = { folderName: folderName, folder: folder, type: type, window: window };
|
||||
if (parent$(accessToSubscribedFolder(folder)))
|
||||
|
||||
Reference in New Issue
Block a user