We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dde70a commit 1e6709bCopy full SHA for 1e6709b
src/Auth/Source/LdapMulti.php
@@ -21,6 +21,7 @@
21
use SimpleSAML\Error;
22
use SimpleSAML\Module\core\Auth\UserPassOrgBase;
23
24
+use function array_change_key_case;
25
use function array_key_exists;
26
use function var_export;
27
@@ -85,7 +86,7 @@ public function __construct(array $info, array $config)
85
86
false,
87
);
88
- $this->mapping = $this->ldapConfig->getArray('mapping');
89
+ $this->mapping = array_change_key_case($this->ldapConfig->getArray('mapping'));
90
Assert::notEmpty($this->mapping);
91
92
$organizations = array_keys($this->mapping);
0 commit comments