diff --git a/ChangeLog b/ChangeLog index 79f45b181..9012486a2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -13,6 +13,10 @@ created upon access to the calendar or address book module. This fixes: http://www.scalableogo.org/bugs/view.php?id=208 + * SoObjects/SOGo/NSDictionary+Utilities.m (-userRecordAsLDIFEntry) + We skip the "isGroup" attribute from the list of attributes + to include during LDIF generation + 2009-12-22 Ludovic Marcotte * Removed all the Kolab-related stuff (more specifically, diff --git a/SoObjects/SOGo/NSDictionary+Utilities.m b/SoObjects/SOGo/NSDictionary+Utilities.m index 06890dd2a..b81cfe0a7 100644 --- a/SoObjects/SOGo/NSDictionary+Utilities.m +++ b/SoObjects/SOGo/NSDictionary+Utilities.m @@ -171,7 +171,8 @@ || [currentKey isEqualToString: @"ContactAccess"] || [currentKey hasPrefix: @"objectClass"] || [currentKey hasPrefix: @"c_"] - || [currentKey isEqualToString: @"dn"])) + || [currentKey isEqualToString: @"dn"] + || [currentKey isEqualToString: @"isGroup"])) [self _appendLDIFKey: currentKey toString: ldifString]; } diff --git a/SoObjects/SOGo/NSString+Utilities.m b/SoObjects/SOGo/NSString+Utilities.m index e57202c16..230757265 100644 --- a/SoObjects/SOGo/NSString+Utilities.m +++ b/SoObjects/SOGo/NSString+Utilities.m @@ -1,6 +1,6 @@ /* NSString+Utilities.m - this file is part of SOGo * - * Copyright (C) 2006-2008 Inverse inc. + * Copyright (C) 2006-2009 Inverse inc. * * Author: Wolfgang Sourdeau *