]> granicus.if.org Git - php/commitdiff
MFH: fix arginfo&proto
authorHannes Magnusson <bjori@php.net>
Thu, 28 Sep 2006 11:32:30 +0000 (11:32 +0000)
committerHannes Magnusson <bjori@php.net>
Thu, 28 Sep 2006 11:32:30 +0000 (11:32 +0000)
ext/soap/soap.c

index 87b1e640c91683176877b3e2769ec4d0a4e2bbcc..c17f9aefb42139017b7d15e1da0e18b6cc102285 100644 (file)
@@ -315,7 +315,7 @@ ZEND_BEGIN_ARG_INFO(__call_args, 0)
        ZEND_ARG_PASS_INFO(0)
        ZEND_ARG_PASS_INFO(0)
 ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO(__soap_call_args, 0)
+ZEND_BEGIN_ARG_INFO_EX(__soap_call_args, 0, 0, 2)
        ZEND_ARG_PASS_INFO(0)
        ZEND_ARG_PASS_INFO(0)
        ZEND_ARG_PASS_INFO(0)
@@ -2690,7 +2690,7 @@ static void verify_soap_headers_array(HashTable *ht TSRMLS_DC)
 }
 
 
-/* {{{ proto mixed SoapClient::__call ( string function_name [, array arguments [, array options [, array input_headers [, array output_headers]]]])
+/* {{{ proto mixed SoapClient::__call ( string function_name, array arguments [, array options [, array input_headers [, array output_headers]]])
    Calls a SOAP function */
 PHP_METHOD(SoapClient, __call)
 {