From 72f3ba116191401195c5e355b111f3f31c687998 Mon Sep 17 00:00:00 2001 From: Johannes Meyer Date: Tue, 10 Nov 2015 11:52:06 +0100 Subject: [PATCH] LdapUserGroupBackend: Offer "user_name" as filter column instead of "user" refs #10370 --- .../Icinga/Authentication/UserGroup/LdapUserGroupBackend.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php index e0e957ee3..fab3d6bea 100644 --- a/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php +++ b/library/Icinga/Authentication/UserGroup/LdapUserGroupBackend.php @@ -434,7 +434,7 @@ class LdapUserGroupBackend extends LdapRepository implements UserGroupBackendInt protected function initializeFilterColumns() { return array( - t('Username') => 'user', + t('Username') => 'user_name', t('User Group') => 'group_name', t('Created At') => 'created_at', t('Last Modified') => 'last_modified'