mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-05 23:26:24 +00:00
See Changelog
Monotone-Parent: a5879e0ca48fa60369415c062b9a5b8e85b3cb84 Monotone-Revision: 60e52d42356476440191e2ecbde8c0be6697337d Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2010-10-13T17:49:44 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -1,5 +1,8 @@
|
||||
2010-10-13 Francis Lachapelle <flachapelle@inverse.ca>
|
||||
|
||||
* SoObjects/SOGo/LDAPSource.m (_qualifierForUIDFilter:): removed
|
||||
duplicated constraints in the filter when using bind fields.
|
||||
|
||||
* UI/WebServerResources/HTMLElement.js (deselectAll): fixed a bug
|
||||
where the properties where not removed from the proper element
|
||||
(table instead of the tbody).
|
||||
|
||||
@@ -593,7 +593,11 @@ static NSArray *commonSearchFields;
|
||||
{
|
||||
bindFieldsEnum = [bindFields objectEnumerator];
|
||||
while ((currentField = [bindFieldsEnum nextObject]))
|
||||
[qs appendFormat: @" OR (%@='%@')", [currentField stringByTrimmingSpaces], escapedUid];
|
||||
{
|
||||
if ([currentField caseInsensitiveCompare: UIDField] != NSOrderedSame
|
||||
&& ![mailFields containsObject: currentField])
|
||||
[qs appendFormat: @" OR (%@='%@')", [currentField stringByTrimmingSpaces], escapedUid];
|
||||
}
|
||||
}
|
||||
|
||||
if (_filter && [_filter length])
|
||||
|
||||
Reference in New Issue
Block a user