From 0f0ad02315bf14042c678fa3a24913c03f83493f Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Fri, 27 Oct 2006 18:11:21 +0000 Subject: [PATCH] Monotone-Parent: 6bc3a118f52fd598fab4c51ea406be4c691dae23 Monotone-Revision: f2ca93f05f1dd7d6b8d2096ea437d4d62ce8e785 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-27T18:11:21 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 4 ++++ SoObjects/Contacts/SOGoContactLDAPEntry.m | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index a1f7926a5..7fed1acab 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2006-10-27 Wolfgang Sourdeau + * SoObjects/Contacts/SOGoContactLDAPEntry.m ([SOGoContactLDAPEntry + -vCard]): the "setVClass" NGVCard method really is "setClass" + instead. + * SoObjects/Contacts/SOGoContactLDAPFolder.m ([SOGoContactLDAPFolder -_searchAttributes]): fixed typo to request the "streetAddress" instead of the "streetaddress". diff --git a/SoObjects/Contacts/SOGoContactLDAPEntry.m b/SoObjects/Contacts/SOGoContactLDAPEntry.m index 92f38c436..d164bbc55 100644 --- a/SoObjects/Contacts/SOGoContactLDAPEntry.m +++ b/SoObjects/Contacts/SOGoContactLDAPEntry.m @@ -139,7 +139,7 @@ if (!vcard) { vcard = [[NGVCard alloc] initWithUid: [self nameInContainer]]; - [vcard setVClass: @"PUBLIC"]; + [vcard setClass: @"PUBLIC"]; [vcard setProdID: @"-//OpenGroupware.org//SOGo"]; [vcard setProfile: @"vCard"]; info = [ldapEntry singleAttributeWithName: @"displayName"];