mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-25 16:33:22 +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>
|
2011-03-08 Wolfgang Sourdeau <wsourdeau@inverse.ca>
|
||||||
|
|
||||||
* OpenChange/MAPIStoreCalendarMessage.m (-save): accept entries
|
* OpenChange/MAPIStoreCalendarMessage.m (-save): accept entries
|
||||||
|
|||||||
@@ -1342,7 +1342,7 @@ function onCategoriesMenuItemClick() {
|
|||||||
for (var i = 0; i < rowIds.length; i++) {
|
for (var i = 0; i < rowIds.length; i++) {
|
||||||
var url = (URLForFolderID(Contact.currentAddressBook)
|
var url = (URLForFolderID(Contact.currentAddressBook)
|
||||||
+ "/" + rowIds[i] + "/" + method);
|
+ "/" + rowIds[i] + "/" + method);
|
||||||
url += "?category=" + escape(this.category);
|
url += "?category=" + encodeURIComponent(this.category);
|
||||||
triggerAjaxRequest(url);
|
triggerAjaxRequest(url);
|
||||||
if (set) {
|
if (set) {
|
||||||
setCategoryOnNode($(rowIds[i]), this.category);
|
setCategoryOnNode($(rowIds[i]), this.category);
|
||||||
|
|||||||
Reference in New Issue
Block a user