瀏覽代碼

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 年之前
父節點
當前提交
e120d13398
共有 1 個文件被更改,包括 1 次插入1 次删除
  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)
 {