Commit 9ff910ba authored by Côme Chilliet's avatar Côme Chilliet
Browse files

Merge branch '5846-samba-groups-are-not-showing-in-dashboard' into '1.3-dev'

Resolve "Samba groups are not showing in dashboard"

See merge request fusiondirectory/fd!289

(cherry picked from commit 8fe9e820)

e77fe541 :ambulance: fix(dashboard) Fix LDAP filter for Samba groups
Showing with 1 addition and 1 deletion
+1 -1
......@@ -115,7 +115,7 @@ class dashboardUsers extends simplePlugin
try {
$nb_groups = count(objects::ls('group', NULL, NULL, '', TRUE));
$nb_mail_groups = count(objects::ls('group', NULL, NULL, '(objectClass=fdGroupMail)', TRUE));
$nb_samba_groups = count(objects::ls('group', NULL, NULL, '(objectClass=sambaSamAccount)', TRUE));
$nb_samba_groups = count(objects::ls('group', NULL, NULL, '(objectClass=sambaGroupMapping)', TRUE));
} catch (LDAPFailureException $e) {
msg_dialog::display(
_('LDAP error'),
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment