Open szaqal83 opened 9 years ago
After calling:
$result = $adldap->group()->members('Gr_QNT_Uzytkownicy', array('cn'));
PHP throws:
Notice: Undefined offset ...
because of wrong condition in for loop in line 51:
for ($i = 0; $i <= $attributes[$key]['count']; $i++) {
condition should be (lower than):
for ($i = 0; $i < $attributes[$key]['count']; $i++) {
Just ran into it too.
After calling:
PHP throws:
because of wrong condition in for loop in line 51:
condition should be (lower than):