Skip to content

Commit 7835dbe

Browse files
committed
Fix incorrect builtin call
1 parent c999474 commit 7835dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Auth/Process/AttributeAddUsersGroups.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ protected function getGroups(array $attributes): array
307307
Logger::notice(sprintf(
308308
'%s : The return attribute [%s] could not be found in entry `%s`.',
309309
$this->title,
310-
array_unique(implode(', ', [$map['return'], strtolower($map['return'])])),
310+
implode(', ', array_unique([$map['return'], strtolower($map['return'])])),
311311
$entry->getDn(),
312312
));
313313
Logger::debug(sprintf('%s : Entry was: %s', $this->title, $this->varExport($entry)));

0 commit comments

Comments
 (0)