Skip to content
Snippets Groups Projects
Unverified Commit 401cf1d1 authored by Thijs Kinkhorst's avatar Thijs Kinkhorst Committed by GitHub
Browse files

Merge pull request #823 from changi67/master

[FIX] ms-ds-consistencyguid need also to be Base64 encode
parents 7568e164 66f95e65
No related branches found
No related tags found
No related merge requests found
......@@ -569,7 +569,7 @@ class SimpleSAML_Auth_LDAP
}
// Base64 encode binary attributes
if (strtolower($name) === 'jpegphoto' || strtolower($name) === 'objectguid') {
if (strtolower($name) === 'jpegphoto' || strtolower($name) === 'objectguid' || strtolower($name) === 'ms-ds-consistencyguid') {
$values[] = base64_encode($value);
} else {
$values[] = $value;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment