Monotone-Parent: f7df5216f7c3f99825abc96b89456b990ef01f02

Monotone-Revision: 8494d73eddd971425d160f71b9402b3e05217405

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2008-03-27T20:29:33
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2008-03-27 20:29:33 +00:00
parent 56006caf36
commit 9fc6aa568e
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,9 @@
2008-03-27 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/AgenorUserDefaults.m ([AgenorUserDefaults
-primaryFetchProfile]): we unescape the fetched value before
constructing the NSDictionary.
* UI/Scheduler/UIxComponentEditor.m ([UIxComponentEditor
-setComponent:newComponent]): the weeks start on sunday in
OpenStep and are indexed from 0.

View File

@ -153,6 +153,10 @@ static NSString *uidColumnName = @"c_uid";
value = [row objectForKey: fieldName];
if ([value isNotNull])
{
value = [value stringByReplacingString: @"''"
withString: @"'"];
value = [value stringByReplacingString: @"\\\\"
withString: @"\\"];
plistData = [value dataUsingEncoding: NSUTF8StringEncoding];
values
= [NSPropertyListSerialization propertyListFromData: plistData