Skip to content
Snippets Groups Projects
Commit a6b69708 authored by Anders Lund's avatar Anders Lund
Browse files

After earlier change attribute names are not lowercase.

Fix for this.


git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@729 44740490-163a-0410-bde0-09ae8108e29a
parent 31cf8a07
No related branches found
No related tags found
No related merge requests found
......@@ -192,10 +192,10 @@ if (isset($_REQUEST['username'])) {
/**
* Retrieve organizational attributes, if the edupersonorgdn attribute is set.
* Retrieve organizational attributes, if the eduPersonOrgDN attribute is set.
*/
if (isset($attributes['edupersonorgdn'])) {
$orgdn = $attributes['edupersonorgdn'][0];
if (isset($attributes['eduPersonOrgDN'])) {
$orgdn = $attributes['eduPersonOrgDN'][0];
$orgattributes = $ldap->getAttributes($orgdn);
$orgattr = array_keys($orgattributes);
......
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