Monotone-Parent: ae2731aedf2ba81e571b426efe36751b90702b6b

Monotone-Revision: 9363573a36f148bed13880066b8e7fd3d82bf591

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-03-11T22:32:47
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-03-11 22:32:47 +00:00
parent 4d594b799f
commit 5cdefc8a8b
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -1,5 +1,10 @@
2010-03-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/SOGo/SOGoUserFolder.m (_davFetchUsersMatching:): we
were still using the "info" field from the result set for extra
user info, however that field as been renamed "c_info" a couple of
months ago.
* UI/WebServerResources/generic.js (SetLogMessage): we must attach
the message to the container even when the message is null.
+1 -1
View File
@@ -416,7 +416,7 @@
field = [currentUser objectForKey: @"c_email"];
[fetch appendFormat: @"<email>%@</email>",
[field stringByEscapingXMLString]];
field = [currentUser objectForKey: @"info"];
field = [currentUser objectForKey: @"c_info"];
if ([field length])
[fetch appendFormat: @"<info>%@</info>",
[field stringByEscapingXMLString]];