bjori           Mon Sep 25 21:16:51 2006 UTC

  Modified files:              
    /php-src/ext/soap   soap.c 
  Log:
  Fix arginfo&proto
  
  
http://cvs.php.net/viewvc.cgi/php-src/ext/soap/soap.c?r1=1.212&r2=1.213&diff_format=u
Index: php-src/ext/soap/soap.c
diff -u php-src/ext/soap/soap.c:1.212 php-src/ext/soap/soap.c:1.213
--- php-src/ext/soap/soap.c:1.212       Mon Sep 25 08:19:06 2006
+++ php-src/ext/soap/soap.c     Mon Sep 25 21:16:51 2006
@@ -17,7 +17,7 @@
   |          Dmitry Stogov <[EMAIL PROTECTED]>                             |
   +----------------------------------------------------------------------+
 */
-/* $Id: soap.c,v 1.212 2006/09/25 08:19:06 dmitry Exp $ */
+/* $Id: soap.c,v 1.213 2006/09/25 21:16:51 bjori Exp $ */
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -232,7 +232,7 @@
        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)
@@ -3046,7 +3046,7 @@
 }
 
 
-/* {{{ proto mixed SoapClient::__call ( string function_name [, array 
arguments [, array options [, array input_headers [, array output_headers]]]]) U
+/* {{{ proto mixed SoapClient::__call ( string function_name, array arguments 
[, array options [, array input_headers [, array output_headers]]]) U
    Calls a SOAP function */
 PHP_METHOD(SoapClient, __call)
 {

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to