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
parent
commit
06606ab4be
No known key found for this signature in database GPG Key ID: F9BA0ADA31CBD89E
  1. 3
      NEWS
  2. 2
      ext/soap/soap.c

3
NEWS

@ -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)

2
ext/soap/soap.c

@ -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()

Loading…
Cancel
Save