1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 11:42:17 +02:00

@- Made ldap_get_entries() return an array even if there are no entries

in search result. (Jani)
# This was actually the original behaviour and the correct one.
# I messed it up when I fixed another bug in it a while ago..
# Fixes bug #8054
This commit is contained in:
foobar
2000-12-04 17:07:27 +00:00
parent 81def6d9d5
commit f48c0fbc95

View File

@@ -851,11 +851,13 @@ PHP_FUNCTION(ldap_get_entries)
if (ldap_result == NULL) RETURN_FALSE;
num_entries = ldap_count_entries(ldap, ldap_result);
if (num_entries == 0) RETURN_FALSE;
array_init(return_value);
add_assoc_long(return_value, "count", num_entries);
if (num_entries == 0) return;
num_entries = 0;
ldap_result_entry = ldap_first_entry(ldap, ldap_result);
if (ldap_result_entry == NULL) RETURN_FALSE;