]>
BookStack Code Mirror - bookstack/commitdiff
projects
/
bookstack
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
| inline |
side by side
(parent:
b714652
)
Missed a variable when updating LdapService.
2320/head
author
Jason Houle
<redacted>
Mon, 12 Oct 2020 16:47:36 +0000
(12:47 -0400)
committer
Jason Houle
<redacted>
Mon, 12 Oct 2020 16:47:36 +0000
(12:47 -0400)
app/Auth/Access/LdapService.php
patch
|
blob
|
history
diff --git
a/app/Auth/Access/LdapService.php
b/app/Auth/Access/LdapService.php
index 47dc24532864ec61e722005fafee8c7c796f73b9..a7ee3b37474d333cbeec37e1db71b8bcb73e2a8a 100644
(file)
--- 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]);