From: Antony Dovgal Date: Mon, 2 Feb 2004 08:26:15 +0000 (+0000) Subject: add missing alias for ocifreecursor() X-Git-Tag: php-5.0.0b4RC1~197 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c7699856fc7918604943d5f10a9191fdd8f1d21b;p=php add missing alias for ocifreecursor() --- diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index 4f79a993ed..4bbc0194be 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -442,7 +442,8 @@ static zend_function_entry php_oci_functions[] = { PHP_FE(oci_collection_trim, NULL) PHP_FE(oci_new_collection, NULL) #endif - + + PHP_FALIAS(oci_free_cursor, oci_free_statement, NULL) PHP_FALIAS(ocifreecursor, oci_free_statement, NULL) PHP_FALIAS(ocibindbyname, oci_bind_by_name, third_arg_force_ref) PHP_FALIAS(ocidefinebyname, oci_define_by_name, third_arg_force_ref)