]> BookStack Code Mirror - bookstack/commitdiff
Missed a variable when updating LdapService. 2320/head
authorJason Houle <redacted>
Mon, 12 Oct 2020 16:47:36 +0000 (12:47 -0400)
committerJason Houle <redacted>
Mon, 12 Oct 2020 16:47:36 +0000 (12:47 -0400)
app/Auth/Access/LdapService.php

index 47dc24532864ec61e722005fafee8c7c796f73b9..a7ee3b37474d333cbeec37e1db71b8bcb73e2a8a 100644 (file)
@@ -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]);