mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-11 03:15:10 +00:00
See ChangeLog
Monotone-Parent: f228f85b4a1cf2fdf65199066d75611c45738e1d Monotone-Revision: bab59e2cce32327be3e5571e6b50d880dffdd253 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-05-15T15:52:29 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,3 +1,9 @@
|
||||
2009-05-15 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/SOGoUserDefaults.m ([SOGoUserDefaults
|
||||
-setObject:forKey:]): fix an issue when calling removeObjectForKey
|
||||
and value is nil.
|
||||
|
||||
2009-05-12 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/LDAPSource.m ([LDAPSource -initFromSource:]):
|
||||
|
||||
@@ -379,7 +379,10 @@ static NSString *uidColumnName = @"c_uid";
|
||||
}
|
||||
|
||||
/* set in hash and mark as modified */
|
||||
[values setObject: value forKey: key];
|
||||
if (value)
|
||||
[values setObject: value forKey: key];
|
||||
else
|
||||
[values removeObjectForKey: key];
|
||||
|
||||
defFlags.modified = YES;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user