Monotone-Parent: e83902dbab2643711380599c555ac903400fd110

Monotone-Revision: 18f04728c7d6b1760dbcd750fc045948d7001567

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-06-23T20:44:54
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2008-06-23 20:44:54 +00:00
parent f773bc2e66
commit f1fa01109c
6 changed files with 32 additions and 27 deletions

View File

@@ -425,7 +425,7 @@ function uixDeleteSelectedContacts(sender) {
}
if (failCount > 0)
alert(labels["You cannot delete the selected contact(s)."]);
alert(labels["You cannot delete the selected contact(s)"]);
else
contactView.update();
@@ -563,7 +563,7 @@ function appendAddressBook(name, folder) {
}
else
folder = "/" + name;
if (!owner)
owner = UserLogin;
@@ -583,7 +583,9 @@ function appendAddressBook(name, folder) {
li.setAttribute("id", folder);
li.setAttribute("owner", owner);
li.appendChild(document.createTextNode(name));
li.appendChild(document.createTextNode(name
.replace("&lt;", "<", "g")
.replace("&gt;", ">", "g")));
setEventsOnAddressBook(li);
}
@@ -635,7 +637,7 @@ function onAddressBookRemove(event) {
onFolderSelectionChange();
}
else {
var folderId = nodes[0].getAttribute("id").substr("1");
var folderId = nodes[0].getAttribute("id");
unsubscribeFromFolder(folderId, owner, onFolderUnsubscribeCB, folderId);
}
}