See ChangeLog.

Monotone-Parent: 28cde64403e65a1ebeda3a984650fd31d8614f29
Monotone-Revision: f51ae70ff345179926dfdd4fd5856e968bdfc327

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2012-05-29T14:31:14
maint-2.0.2
Francis Lachapelle 2012-05-29 14:31:14 +00:00
parent 19ea16d5ba
commit 66c972eb97
2 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,10 @@
* UI/MailerUI/UIxMailEditor.m (-validateForSend): don't force the
subject to be defined.
* SoObjects/Mailer/SOGoMailObject+Draft.m (-subjectForReply): make
sure subject is a defined value to avoid "null" strings in the
reply message.
2012-05-28 Francis Lachapelle <flachapelle@inverse.ca>
* UI/WebServerResources/SchedulerUI.js (validateUploadForm): hide

View File

@ -59,6 +59,8 @@
hasPrefix = NO;
subject = [self decodedSubject];
if (![subject length]) subject = @"";
i = 0;
while (!hasPrefix && replyPrefixes[i])
if ([subject hasPrefix: replyPrefixes[i]])