From a192b600fc818313ef26b139a9a2d11d4d17f0a4 Mon Sep 17 00:00:00 2001 From: Jason Houle Date: Mon, 12 Oct 2020 12:47:36 -0400 Subject: [PATCH] Missed a variable when updating LdapService. --- app/Auth/Access/LdapService.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/Auth/Access/LdapService.php b/app/Auth/Access/LdapService.php index 47dc24532..a7ee3b374 100644 --- a/app/Auth/Access/LdapService.php +++ b/app/Auth/Access/LdapService.php @@ -76,6 +76,7 @@ class LdapService extends ExternalAuthService $idAttr = $this->config['id_attribute']; $emailAttr = $this->config['email_attribute']; $displayNameAttr = $this->config['display_name_attribute']; + $thumbnailAttr = $this->config['thumbnail_attribute']; $user = $this->getUserWithAttributes($userName, ['cn', 'dn', $idAttr, $emailAttr, $displayNameAttr]);