diff options
author | Andrey Hristov <andrey@php.net> | 1999-08-20 13:03:22 +0000 |
---|---|---|
committer | Andrey Hristov <andrey@php.net> | 1999-08-20 13:03:22 +0000 |
commit | 01ed90ccef3ee4b64406c0526d20be86d9bf63ce (patch) | |
tree | ac9429499b03692cfabc11305fc07af8ce222948 /ext/ldap | |
parent | 17f132f9ee4ab6734ea02b0c8fc1425ae1fd9a19 (diff) | |
download | php-git-01ed90ccef3ee4b64406c0526d20be86d9bf63ce.tar.gz |
Fix bug #2025
Diffstat (limited to 'ext/ldap')
-rw-r--r-- | ext/ldap/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ldap/ldap.c b/ext/ldap/ldap.c index f3d8db5af1..86d7dfa8f2 100644 --- a/ext/ldap/ldap.c +++ b/ext/ldap/ldap.c @@ -67,7 +67,7 @@ ldap_module php3_ldap_module; function_entry ldap_functions[] = { PHP_FE(ldap_connect, NULL) - PHP_FE(ldap_close, NULL) + PHP_FALIAS(ldap_close, ldap_unbind, NULL) PHP_FE(ldap_bind, NULL) PHP_FE(ldap_unbind, NULL) PHP_FE(ldap_read, NULL) |