summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2018-02-24 11:31:22 +0100
committerChristoph M. Becker <cmbecker69@gmx.de>2018-02-24 11:32:03 +0100
commit8c396e0e88527393cebc8194d9a5e30f0c4429c9 (patch)
tree275fd1f96869c56a489c45172dc6785f8229e6e4
parentc904d380a288ed50b62ef93c733883dc2fad2301 (diff)
parenta358211a75ef17a51f67df471552df92c68fa565 (diff)
downloadphp-git-8c396e0e88527393cebc8194d9a5e30f0c4429c9.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix imagesetinterpolation arginfo
-rw-r--r--NEWS3
-rw-r--r--ext/gd/gd.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 3e552aea05..d34c797d11 100644
--- a/NEWS
+++ b/NEWS
@@ -19,6 +19,9 @@ PHP NEWS
- FTP:
. Fixed ftp_pasv arginfo. (carusogabriel)
+-GD:
+ . Fixed imagesetinterpolation arginfo. (Gabriel Caruso)
+
- LDAP:
. Fixed bug #49876 (Fix LDAP path lookup on 64-bit distros). (dzuelke)
diff --git a/ext/gd/gd.c b/ext/gd/gd.c
index 9c728cf692..1b9bc8c85e 100644
--- a/ext/gd/gd.c
+++ b/ext/gd/gd.c
@@ -848,7 +848,7 @@ ZEND_BEGIN_ARG_INFO(arginfo_imageaffinematrixconcat, 0)
ZEND_ARG_INFO(0, m2)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO(arginfo_imagesetinterpolation, 0)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_imagesetinterpolation, 0, 0, 1)
ZEND_ARG_INFO(0, im)
ZEND_ARG_INFO(0, method)
ZEND_END_ARG_INFO()