diff --git a/ChangeLog b/ChangeLog index 49cdd4d94..0bf464dd4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2007-07-10 Wolfgang Sourdeau + * SoObjects/SOGo/SOGoAuthenticator.m ([SOGoAuthenticator + -passwordInContext:context]): made method public. + * OGoContentStore/OCSiCalFieldExtractor.m ([OCSiCalFieldExtractor -extractQuickFieldsFromTodo:_task]): set "isallday" and "isopaque" to false to avoid a null violation. diff --git a/SoObjects/SOGo/SOGoAuthenticator.m b/SoObjects/SOGo/SOGoAuthenticator.m index cb67ba4c6..edf368fb9 100644 --- a/SoObjects/SOGo/SOGoAuthenticator.m +++ b/SoObjects/SOGo/SOGoAuthenticator.m @@ -82,7 +82,7 @@ // && [_pwd isEqualToString: @"freebusy"])); } -- (NSString *) _passwordInContext: (WOContext *) context +- (NSString *) passwordInContext: (WOContext *) context { NSString *auth, *password; NSArray *creds; @@ -95,7 +95,7 @@ if ([creds count] > 1) password = [creds objectAtIndex: 1]; } - + return password; } @@ -125,7 +125,7 @@ { user = [SOGoUser userWithLogin: login roles: [self rolesForLogin: login]]; - [user setCurrentPassword: [self _passwordInContext: _ctx]]; + [user setCurrentPassword: [self passwordInContext: _ctx]]; } } else