Skip to content
Snippets Groups Projects
Commit 447d5052 authored by Andreas Åkre Solberg's avatar Andreas Åkre Solberg
Browse files

LDAP library return jpeg photos base64encoded

git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@1117 44740490-163a-0410-bde0-09ae8108e29a
parent 8645de2a
No related branches found
No related tags found
No related merge requests found
...@@ -155,9 +155,11 @@ class SimpleSAML_Auth_LDAP { ...@@ -155,9 +155,11 @@ class SimpleSAML_Auth_LDAP {
for ($i = 0; $i < $ldapAttributes['count']; $i++) { for ($i = 0; $i < $ldapAttributes['count']; $i++) {
$attributeName = $ldapAttributes[$i]; $attributeName = $ldapAttributes[$i];
$base64encode = FALSE;
/* Skip the 'jpegphoto' attribute. */ /* Skip the 'jpegphoto' attribute. */
if (strtolower($attributeName) === 'jpegphoto') { if (strtolower($attributeName) === 'jpegphoto') {
continue; $base64encode = TRUE;
} }
$attribute = $ldapAttributes[$attributeName]; $attribute = $ldapAttributes[$attributeName];
...@@ -165,7 +167,7 @@ class SimpleSAML_Auth_LDAP { ...@@ -165,7 +167,7 @@ class SimpleSAML_Auth_LDAP {
$values = array(); $values = array();
for ($j = 0; $j < $valueCount; $j++) { for ($j = 0; $j < $valueCount; $j++) {
$values[] = $attribute[$j]; $values[] = ($base64encode ? base64_encode($attribute[$j]) : $attribute[$j] );
} }
$attributes[$attributeName] = $values; $attributes[$attributeName] = $values;
......
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