You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I receive an undefined offset in the file "Objects\Ldap\Entry.php" at line 52.
When i look into this i see that there's a for loop counting from 0 until 'count'. When count is 4, it wil continue to 4 but should continue to 3 since the array starts with 0.
So line 51 is now:
for ($i = 0; $i <= $attributes[$key]['count']; $i++) {
But should be:
for ($i = 0; $i < $attributes[$key]['count']; $i++) {
The text was updated successfully, but these errors were encountered:
Hello,
I receive an undefined offset in the file "Objects\Ldap\Entry.php" at line 52.
When i look into this i see that there's a for loop counting from 0 until 'count'. When count is 4, it wil continue to 4 but should continue to 3 since the array starts with 0.
So line 51 is now:
But should be:
The text was updated successfully, but these errors were encountered: