Browse Source
Merge branch 'PHP-7.2'
* PHP-7.2:
Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
pull/2889/head
Joe Watkins
9 years ago
No known key found for this signature in database
GPG Key ID: F9BA0ADA31CBD89E
2 changed files with
4 additions and
1 deletions
-
NEWS
-
ext/soap/soap.c
|
|
|
@ -106,6 +106,9 @@ PHP NEWS |
|
|
|
. Fixed bug #74941 (session fails to start after having headers sent). |
|
|
|
(morozov) |
|
|
|
|
|
|
|
- SOAP: |
|
|
|
. Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). (villfa) |
|
|
|
|
|
|
|
- SPL: |
|
|
|
. Fixed bug #74977 (Appending AppendIterator leads to segfault). |
|
|
|
(Andrew Nester) |
|
|
|
|
|
|
|
@ -366,7 +366,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() |
|
|
|
|
|
|
|
|