From: Andrey Hristov Date: Sat, 8 Feb 2003 19:13:04 +0000 (+0000) Subject: adding a note. X-Git-Tag: RELEASE_0_5~1213 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f8656a71bba430fe69eb60b88f0fc68337526db9;p=php adding a note. --- diff --git a/ext/soap/soap.c b/ext/soap/soap.c index 01ee13eb08..255909babd 100644 --- a/ext/soap/soap.c +++ b/ext/soap/soap.c @@ -186,6 +186,9 @@ PHP_MINIT_FUNCTION(soap) ZEND_INIT_MODULE_GLOBALS(soap, php_soap_init_globals, php_soap_del_globals); /* Register SoapObject class */ + /* BIG NOTE : THIS EMITS AN COMPILATION WARNING UNDER ZE2 - handle_function_call deprecated. + soap_call_function_handler should be of type struct _zend_function, not (*handle_function_call). + */ INIT_OVERLOADED_CLASS_ENTRY(soap_class_entry, PHP_SOAP_CLASSNAME, soap_client_functions, soap_call_function_handler, NULL, NULL); zend_register_internal_class(&soap_class_entry TSRMLS_CC);