summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabien Villepinte <fabien.villepinte@gmail.com>2017-10-30 13:25:40 +0100
committerJoe Watkins <krakjoe@php.net>2017-10-30 14:13:05 +0000
commita308000ff2c7c5bdbe21a840d5def00a42d565aa (patch)
tree3cb3923f798b067f3c70cd6ad4a7fac32d8d9886
parente6aea3dc78ca8ab1634163cdb82a1140b9b97eb4 (diff)
downloadphp-git-a308000ff2c7c5bdbe21a840d5def00a42d565aa.tar.gz
Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
-rw-r--r--NEWS3
-rw-r--r--ext/soap/soap.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 6d579a378f..99afb984ab 100644
--- a/NEWS
+++ b/NEWS
@@ -49,6 +49,9 @@ PHP NEWS
- PGSQL:
. Fixed bug #75419 (Default link incorrectly cleared/linked by pg_close()). (Sara)
+- SOAP:
+ . Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). (villfa)
+
- Zlib:
. Fixed bug #75299 (Wrong reflection on inflate_init and inflate_add). (Fabien
Villepinte)
diff --git a/ext/soap/soap.c b/ext/soap/soap.c
index 1751f4d2f9..62b119fb2b 100644
--- a/ext/soap/soap.c
+++ b/ext/soap/soap.c
@@ -373,7 +373,7 @@ ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getcookies, 0)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setsoapheaders, 0, 0, 1)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setsoapheaders, 0, 0, 0)
ZEND_ARG_INFO(0, soapheaders)
ZEND_END_ARG_INFO()