From: Jason Houle Date: Mon, 12 Oct 2020 16:47:36 +0000 (-0400) Subject: Missed a variable when updating LdapService. X-Git-Tag: v21.05~1^2~20^2 X-Git-Url: http://source.bookstackapp.com/bookstack/commitdiff_plain/refs/pull/2320/head?ds=inline Missed a variable when updating LdapService. --- 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]);