mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-06 12:05:28 +00:00
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:
@@ -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:):
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user