Browse Source

HPCC-17183 Fix 'Sort by ManagedBy' not working For GroupQuery

The '@groupOwner' should be used to sort on ManagedBy.

Signed-off-by: wangkx <kevin.wang@lexisnexis.com>
wangkx 8 years ago
parent
commit
e120d13398
1 changed files with 1 additions and 1 deletions
  1. 1 1
      system/security/LdapSecurity/ldapconnection.cpp

+ 1 - 1
system/security/LdapSecurity/ldapconnection.cpp

@@ -69,7 +69,7 @@ const char* getUserFieldNames(UserField field)
     return NULL;
 }
 
-const char* GroupFieldNames[] = { "@name", "@managedby", "@desc" };
+const char* GroupFieldNames[] = { "@name", "@groupOwner", "@desc" };
 
 const char* getGroupFieldNames(GroupField field)
 {