diff --git a/ChangeLog b/ChangeLog index 8edb2d266..f06dc0c5c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2010-06-10 Wolfgang Sourdeau + * UI/Common/UIxPageFrame.m (-logoffPath): reverted previous change + as we now make use of the logoffAction to redirect to the CAS + logout url. + * SoObjects/SOGo/SOGoSystemDefaults.m (-davAuthenticationType): new method similar to -authenticationType. Currently used for CAS or non-CAS authentication. diff --git a/UI/Common/UIxPageFrame.m b/UI/Common/UIxPageFrame.m index dd0cb5b7f..cc81a8e3f 100644 --- a/UI/Common/UIxPageFrame.m +++ b/UI/Common/UIxPageFrame.m @@ -26,7 +26,6 @@ #import #import -#import #import #import #import @@ -156,18 +155,7 @@ - (NSString *) logoffPath { - NSString *logoffPath; - SOGoSystemDefaults *sd; - - sd = [SOGoSystemDefaults sharedSystemDefaults]; - if ([[sd authenticationType] isEqualToString: @"cas"]) - logoffPath = [[sd CASServiceURL] composeURLWithAction: @"logout" - parameters: nil - andHash: NO]; - else - logoffPath = [self relativePathToUserFolderSubPath: @"logoff"]; - - return logoffPath; + return [self relativePathToUserFolderSubPath: @"logoff"]; } /* popup handling */