summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2017-04-10 12:48:51 +0100
committerJoe Watkins <krakjoe@php.net>2017-04-10 12:48:51 +0100
commitd9e2f803750033bdd6dcf756ef1ca85dc53309dd (patch)
treeb28aa2af39088bfaa9dcaf45a624706ae8e8f530
parente6423757645749dca781639d815f8348a4a20c98 (diff)
downloadphp-git-d9e2f803750033bdd6dcf756ef1ca85dc53309dd.tar.gz
Fixed bug #74404 (wrong reflection on DateTimeZone::getTransitions)
-rw-r--r--NEWS4
-rw-r--r--ext/date/php_date.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 5caecbe6cb..a8305ac866 100644
--- a/NEWS
+++ b/NEWS
@@ -2,6 +2,10 @@ PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2017 PHP 7.0.19
+- Date:
+ . Fixed bug #74404 (Wrong reflection on DateTimeZone::getTransitions).
+ (krakjoe)
+
- Fileinfo:
. Fixed bug #74379 (syntax error compile error in libmagic/apprentice.c).
(Laruence)
diff --git a/ext/date/php_date.c b/ext/date/php_date.c
index 630354cc7a..9435d6beab 100644
--- a/ext/date/php_date.c
+++ b/ext/date/php_date.c
@@ -339,7 +339,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_timezone_transitions_get, 0, 0, 1)
ZEND_ARG_INFO(0, timestamp_end)
ZEND_END_ARG_INFO()
-ZEND_BEGIN_ARG_INFO(arginfo_timezone_method_transitions_get, 0)
+ZEND_BEGIN_ARG_INFO_EX(arginfo_timezone_method_transitions_get, 0, 0, 0)
ZEND_ARG_INFO(0, timestamp_begin)
ZEND_ARG_INFO(0, timestamp_end)
ZEND_END_ARG_INFO()