diff --git a/ChangeLog b/ChangeLog index 0d4019ced..3f6ca52fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2010-03-11 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoUserFolder.m (_davFetchUsersMatching:): we + were still using the "info" field from the result set for extra + user info, however that field as been renamed "c_info" a couple of + months ago. + * UI/WebServerResources/generic.js (SetLogMessage): we must attach the message to the container even when the message is null. diff --git a/SoObjects/SOGo/SOGoUserFolder.m b/SoObjects/SOGo/SOGoUserFolder.m index 55f153aac..f45e590d6 100644 --- a/SoObjects/SOGo/SOGoUserFolder.m +++ b/SoObjects/SOGo/SOGoUserFolder.m @@ -416,7 +416,7 @@ field = [currentUser objectForKey: @"c_email"]; [fetch appendFormat: @"%@", [field stringByEscapingXMLString]]; - field = [currentUser objectForKey: @"info"]; + field = [currentUser objectForKey: @"c_info"]; if ([field length]) [fetch appendFormat: @"%@", [field stringByEscapingXMLString]];