sanitize strings before encoding them when using EAS

pull/64/head
Ludovic Marcotte 2014-11-06 09:35:58 -05:00
parent 7052daa1c8
commit 6de70e4043
2 changed files with 3 additions and 2 deletions

View File

@ -66,9 +66,9 @@ static NSArray *easCommandParameters = nil;
{
NSString *s;
s = [self stringByEscapingHTMLString];
s = [self safeString];
return [s safeString];
return [s stringByEscapingHTMLString];
}
- (int) activeSyncFolderType

1
NEWS
View File

@ -16,6 +16,7 @@ Bug fixes
- fixed automatic return receipts crash when not in the recepient list (#2965)
- fixed support for Sieve folder encoding parameter (#2622)
- fixed rename of subscribed addressbooks
- sanitize strings before escaping them when using EAS
2.2.9a (2014-09-29)
-------------------