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:
Francis Lachapelle
2009-05-15 15:52:29 +00:00
parent ebef6be9f8
commit 42f5859b19
2 changed files with 10 additions and 1 deletions
+6
View File
@@ -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:]):
+4 -1
View File
@@ -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;
}