See Changelog.

Monotone-Parent: 48315db3a4e6bc9edd9f075ada5c9264cac4297e
Monotone-Revision: 9deadfa49386c2d13ad45fa2c1c8d7f91bae49e3

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-10-24T00:08:25
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-10-24 00:08:25 +00:00
parent 05ddd1a42d
commit 766b26893a
2 changed files with 11 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2010-10-25 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Contacts/UIxContactFolderActions.m (-importLdifData:): use
lowercase keys for the contact dictionary.
2010-10-21 Ludovic Marcotte <lmarcotte@inverse.ca>
* Changes required for http://sogo.nu/bugs/view.php?id=795
@@ -81,6 +86,11 @@
(performSearchCallback): improved autocompletion when changing
field before completion has returned.
* UI/WebServerResources/UIxMailToSelection.js (fancyAddRow): when
using IE, the input element is now removed and created when cloning
a row. Also convert the onFocus and onBlur attributes to
JavaScript calls.
2010-10-13 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* OpenChange/MAPIStoreMapping.m (-registerURL:): commented method out.

View File

@@ -171,7 +171,7 @@
if ([key length] == 0)
key = @"dn";
[entry setObject: value forKey: key];
[entry setObject: value forKey: [key lowercaseString]];
}
else
{