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 bd6b59f commit 953b82cCopy full SHA for 953b82c
lib/Auth/Ldap.php
@@ -477,7 +477,10 @@ public function searchformultiple(
477
// decide whether to base64 encode or not
478
for ($k = 0; $k < $attribute['count']; $k++) {
479
// base64 encode binary attributes
480
- if (strtolower($name) === 'jpegphoto' || strtolower($name) === 'objectguid') {
+ if (strtolower($name) === 'jpegphoto'
481
+ || strtolower($name) === 'objectguid'
482
+ || strtolower($name) === 'ms-ds-consistencyguid'
483
+ ) {
484
$results[$i][$name][$k] = base64_encode($attribute[$k]);
485
}
486
0 commit comments