Monotone-Parent: 607aa602c2fc40fbaa85fb65c2f5b39d5ec5c3f6

Monotone-Revision: 6de0a98067b97567bbcbe8d9bf8d0a0add24b5fa

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-06-04T19:19:56
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-06-04 19:19:56 +00:00
parent b312897a3d
commit 2005dc93fd
2 changed files with 8 additions and 1 deletions

View File

@ -1,5 +1,8 @@
2009-06-04 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Mailer/SOGoMailObject+Draft.m: add a default
attachment path of "1" when path is nil and thus unique.
* UI/SOGoUI/UIxComponent.m (-_parseQueryString:): fixed handling
of bad charsets in the parameters encoding. Invalid values will be
discarded.

View File

@ -276,7 +276,11 @@
}
}
else
[self _fetchFileAttachmentKey: part intoArray: keys withPath: path];
{
if (!path)
path = @"1";
[self _fetchFileAttachmentKey: part intoArray: keys withPath: path];
}
}
#warning we might need to handle parts with a "name" attribute