Skip to content

Commit 118db2d

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix bug #75464 Wrong reflection on SoapClient::__setSoapHeaders
2 parents 1a72d32 + 5262bd9 commit 118db2d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

NEWS

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ PHP NEWS
99
- GD:
1010
. Fixed bug #75437 (Wrong reflection on imagewebp). (Fabien Villepinte)
1111

12+
- interbase:
13+
. Fixed bug #75453 (Incorrect reflection for ibase_[p]connect). (villfa)
14+
1215
- Mysqli:
1316
. Fixed bug #75434 (Wrong reflection for mysqli_fetch_all function). (Fabien
1417
Villepinte)
1518

19+
- SOAP:
20+
. Fixed bug #75464 (Wrong reflection on SoapClient::__setSoapHeaders). (villfa)
21+
1622
26 Oct 2017, PHP 7.2.0RC5
1723

1824
- Core:
@@ -47,9 +53,6 @@ PHP NEWS
4753
. Fixed bug #75317 (UConverter::setDestinationEncoding changes source instead
4854
of destination). (andrewnester)
4955

50-
- interbase:
51-
. Fixed bug #75453 (Incorrect reflection for ibase_[p]connect). (villfa)
52-
5356
- JSON:
5457
. Fixed bug #68567 (JSON_PARTIAL_OUTPUT_ON_ERROR can result in JSON with null
5558
key). (Jakub Zelenka)

ext/soap/soap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -366,7 +366,7 @@ ZEND_END_ARG_INFO()
366366
ZEND_BEGIN_ARG_INFO(arginfo_soapclient___getcookies, 0)
367367
ZEND_END_ARG_INFO()
368368

369-
ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setsoapheaders, 0, 0, 1)
369+
ZEND_BEGIN_ARG_INFO_EX(arginfo_soapclient___setsoapheaders, 0, 0, 0)
370370
ZEND_ARG_INFO(0, soapheaders)
371371
ZEND_END_ARG_INFO()
372372

0 commit comments

Comments
 (0)