mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-21 03:15:25 +00:00
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:
@@ -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.
|
||||
|
||||
|
||||
@@ -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]];
|
||||
|
||||
Reference in New Issue
Block a user