ID: 48441 Updated by: j...@php.net Reported By: patrickalla...@php.net -Status: Open +Status: Bogus Bug Type: LDAP related PHP Version: 5.3.0RC2 Assigned To: patrickallaert New Comment:
How about not. These kind of "magic" things tend to cause bugs that are next to impossible to find. Previous Comments: ------------------------------------------------------------------------ [2009-05-31 21:53:54] patrickalla...@php.net Description: ------------ Specifiying sizelimit, timelimit and deref options in ldap_search() makes them persistent for next call to ldap_search(). <?php // ldap_search() with sizelimit, timelimit and deref options ldap_search($link, $dn, $filter, $attrs, 1, 1, 1, LDAP_DEREF_ALWAYS); // Default value not used for sizelimit, timelimit and deref, previous one used. // Returns same truncated (due to sizelimit) results as previous call ldap_search($link, $dn, $filter, $attrs, 1); ?> ------------------------------------------------------------------------ -- Edit this bug report at http://bugs.php.net/?id=48441&edit=1