diff --git a/ChangeLog b/ChangeLog index 5ff8b6570..80b3474f3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-10-25 Francis Lachapelle + + * UI/Contacts/UIxContactFolderActions.m (-importLdifData:): use + lowercase keys for the contact dictionary. + 2010-10-21 Ludovic Marcotte * 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 * OpenChange/MAPIStoreMapping.m (-registerURL:): commented method out. diff --git a/UI/Contacts/UIxContactFolderActions.m b/UI/Contacts/UIxContactFolderActions.m index e5f4e746d..cbac6a365 100644 --- a/UI/Contacts/UIxContactFolderActions.m +++ b/UI/Contacts/UIxContactFolderActions.m @@ -171,7 +171,7 @@ if ([key length] == 0) key = @"dn"; - [entry setObject: value forKey: key]; + [entry setObject: value forKey: [key lowercaseString]]; } else {