We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e6709b commit 4a25a83Copy full SHA for 4a25a83
1 file changed
src/Auth/Source/LdapMulti.php
@@ -23,6 +23,7 @@
23
24
use function array_change_key_case;
25
use function array_key_exists;
26
+use function strtolower;
27
use function var_export;
28
29
class LdapMulti extends UserPassOrgBase
@@ -126,6 +127,7 @@ protected function loginSasl(
126
127
string $organization,
128
array $sasl_args = [],
129
): array {
130
+ $organization = strtolower($organization);
131
if ($this->includeOrgInUsername) {
132
$username = $username . '@' . $organization;
133
}
0 commit comments