mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-18 21:15:57 +00:00
Removing some trail characters at event description
* They are sometimes present after a \r\n\n
This commit is contained in:
committed by
Julio García
parent
1846e1ee5d
commit
65ece61273
@@ -1214,6 +1214,20 @@ static NSCharacterSet *hexCharacterSet = nil;
|
||||
return MAPISTORE_SUCCESS;
|
||||
}
|
||||
|
||||
/*
|
||||
private static function parseDescriptionOc2Rc($description)
|
||||
{
|
||||
$description = ltrim($description, ')');
|
||||
|
||||
if (strpos($description, "\r\n\n") !== false) {
|
||||
$exploded = explode("\r\n\n", $description, -1);
|
||||
$description = join($exploded, "\n");
|
||||
}
|
||||
|
||||
return $description;
|
||||
}
|
||||
*/
|
||||
|
||||
- (int) getPidTagBody: (void **) data
|
||||
inMemCtx: (TALLOC_CTX *) memCtx
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user