LDAP: check first, if requested attribute exists
This commit is contained in:
parent
716c5a3c8e
commit
907fa9d85b
|
@ -406,7 +406,7 @@ class OC_LDAP {
|
||||||
$er = ldap_first_entry($cr, $rr);
|
$er = ldap_first_entry($cr, $rr);
|
||||||
$result = ldap_get_attributes($cr, $er);
|
$result = ldap_get_attributes($cr, $er);
|
||||||
|
|
||||||
if($result[$attr]['count'] > 0){
|
if(isset($result[$attr]) && $result[$attr]['count'] > 0){
|
||||||
$values = array();
|
$values = array();
|
||||||
for($i=0;$i<$result[$attr]['count'];$i++) {
|
for($i=0;$i<$result[$attr]['count'];$i++) {
|
||||||
$values[] = $result[$attr][$i];
|
$values[] = $result[$attr][$i];
|
||||||
|
|
Loading…
Reference in New Issue