From f824f91ac95000c7a6e60117d00088c253e16213 Mon Sep 17 00:00:00 2001 From: Reeze Xia Date: Sat, 28 Feb 2015 16:37:14 +0800 Subject: Fixed bug #69141 Missing arguments in reflection info for some builtin functions This include: - setcookie (missing "httponly") - setrawcookie (missing "httponly") - spl_autoload_register (missing 2 optional params) - mktime (missing "is_dst") - gmmktime (missing "is_dst") --- ext/date/php_date.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'ext/date/php_date.c') diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 81f6ae41a2..0819b45df4 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -85,6 +85,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_mktime, 0, 0, 0) ZEND_ARG_INFO(0, mon) ZEND_ARG_INFO(0, day) ZEND_ARG_INFO(0, year) + ZEND_ARG_INFO(0, is_dst) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_gmmktime, 0, 0, 0) @@ -94,6 +95,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_gmmktime, 0, 0, 0) ZEND_ARG_INFO(0, mon) ZEND_ARG_INFO(0, day) ZEND_ARG_INFO(0, year) + ZEND_ARG_INFO(0, is_dst) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO(arginfo_checkdate, 0) -- cgit v1.2.1