Monotone-Parent: dce141ada92f68343c2d1685722e6b8c8182168b

Monotone-Revision: 9122e2216d8964993594986341641fdaf0eef5bd

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2011-03-10T16:22:56
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2011-03-10 16:22:56 +00:00
parent c06f05125c
commit eebb4b9e8a
2 changed files with 8 additions and 1 deletions

View File

@@ -1,3 +1,10 @@
2011-03-10 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/WebServerResources/ContactsUI.js (onCategoriesMenuItemClick):
makes use of "encodeURIComponent" rather than "escape" to encode
URL parameters, because for some reason the former takes the
encoding into account and not the latter.
2011-03-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreCalendarMessage.m (-save): accept entries

View File

@@ -1342,7 +1342,7 @@ function onCategoriesMenuItemClick() {
for (var i = 0; i < rowIds.length; i++) {
var url = (URLForFolderID(Contact.currentAddressBook)
+ "/" + rowIds[i] + "/" + method);
url += "?category=" + escape(this.category);
url += "?category=" + encodeURIComponent(this.category);
triggerAjaxRequest(url);
if (set) {
setCategoryOnNode($(rowIds[i]), this.category);