See Changelog

Monotone-Parent: 87677ae4611dc3d4c0fcc7c8576441631b282a43
Monotone-Revision: 658c430f2ea9683140e903d44e47bc3af6e9f243

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2010-11-12T16:40:17
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2010-11-12 16:40:17 +00:00
parent 48e6857891
commit a25bab6e6d
4 changed files with 24 additions and 2 deletions
+8 -1
View File
@@ -255,12 +255,19 @@ static NSArray *childRecordFields = nil;
}
- (id) folderPropertyValueInCategory: (NSString *) theKey
{
return [self folderPropertyValueInCategory: theKey
forUser: [context activeUser]];
}
- (id) folderPropertyValueInCategory: (NSString *) theKey
forUser: (SOGoUser *) theUser
{
SOGoUserSettings *settings;
NSDictionary *folderSettings;
id value;
settings = [[context activeUser] userSettings];
settings = [theUser userSettings];
folderSettings = [settings objectForKey: [container nameInContainer]];
value = [[folderSettings objectForKey: theKey]
objectForKey: [self folderReference]];