mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-21 17:36:24 +00:00
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:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user