diff --git a/ChangeLog b/ChangeLog index 9a5829147..e03ea2fb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-08-16 Wolfgang Sourdeau + * SoObjects/Mailer/SOGoMailBaseObject.m ([-imap4URLString]): no + longer adds a "/" at the end of the string (the default for + folders), therefore this will be overriden in SOGoMailFolder + rather than in SOGoMailObject. + * UI/MailerUI/UIxMailListView.m ([-expungeAction]): removed method, moved into the new UIxMailActions module class. diff --git a/SoObjects/Mailer/SOGoMailBaseObject.m b/SoObjects/Mailer/SOGoMailBaseObject.m index a317c44db..11b74259b 100644 --- a/SoObjects/Mailer/SOGoMailBaseObject.m +++ b/SoObjects/Mailer/SOGoMailBaseObject.m @@ -151,7 +151,7 @@ static BOOL debugOn = YES; urlString = [container imap4URLString]; imap4Name = [[self relativeImap4Name] stringByEscapingURL]; - [urlString appendFormat: @"%@/", imap4Name]; + [urlString appendFormat: @"%@", imap4Name]; return urlString; }