See ChangeLog

Monotone-Parent: ddf277f21cd816fe481bf94c7ec4b59815233bf7
Monotone-Revision: 01007adc666a7e8c89a42c0f76d28007c766519c

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2011-03-23T21:59:22
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2011-03-23 21:59:22 +00:00
parent fc2abaaf0a
commit 4de375902f
2 changed files with 11 additions and 3 deletions
+5
View File
@@ -1,3 +1,8 @@
2011-03-24 Francis Lachapelle <flachapelle@inverse.ca>
* UI/MailerUI/UIxMailListActions.m (-imap4SortOrdering): verify
that the sort is defined when rollbacking to the user's settings.
2011-03-23 Ludovic Marcotte <lmarcotte@inverse.ca>
* SoObjects/Appointments/SOGoAppointmentObject.m (-PUTAction:):
+6 -3
View File
@@ -384,10 +384,13 @@
else if (moduleSettings)
{
NSArray *sortState = [moduleSettings objectForKey: @"SortingState"];
sort = [[sortState objectAtIndex: 0] uppercaseString];
asc = [[sortState objectAtIndex: 1] boolValue];
if ([sortState count])
{
sort = [[sortState objectAtIndex: 0] uppercaseString];
asc = [[sortState objectAtIndex: 1] boolValue];
}
}
else
if (![sort length])
sort = [self defaultSortKey];
// Construct and return the final IMAP ordering constraint