See ChangeLog

Monotone-Parent: 00dcc1dc8b8b274e7cf85d53a4fa495b97e1c52c
Monotone-Revision: a4f6c377a41454eb21ed5b253cb7d07fc2c1a55e

Monotone-Author: ludovic@Sophos.ca
Monotone-Date: 2011-12-29T12:24:43
This commit is contained in:
Ludovic Marcotte
2011-12-29 12:24:43 +00:00
parent 6371bc2947
commit 5799804274
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,9 @@
2011-12-29 Ludovic Marcotte <lmarcotte@inverse.ca.>
* SoObjects/SOGo/SOGoSQLUserProfile.m (_sqlJsonRepresentation:):
don't escape the / character as it's generating invalid JSON
output on newer versions of PostgreSQL.
2011-12-23 Francis Lachapelle <flachapelle@inverse.ca>
* UI/Scheduler/UIxAppointmentEditor.m (-viewAction): the end

View File

@@ -145,7 +145,6 @@ static NSString *uidColumnName = @"c_uid";
sql = [jsonRepresentation mutableCopy];
[sql autorelease];
[sql replaceString: @"\\" withString: @"\\\\"];
[sql replaceString: @"'" withString: @"''"];
return sql;