com php-src: Fix bug #74409: NEWS ext/standard/basic_function s.c
[email protected] (Sebastian Bergmann)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 7cdf520319b4c2dab1409215b680ee1410bf39c2 Author: Sebastian Bergmann <[email protected]> Tue, 11 Apr 2017 08:27:17 +0200 Parents: 6e23f2bceb0826e65eb8129fd94c61b7b3a44da7 Branches: PHP-7.0 PHP-7.1 master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=7cdf520319b4c2dab1409215b680ee1410bf39c2 Log: Fix bug #74409 Bugs: https://bugs.php.net/74409 Changed paths: M NEWS M ext/standard/basic_functions.c Diff: diff --git a/NEWS b/NEWS index a8305ac..dd25136 100644 --- a/NEWS +++ b/NEWS @@ -26,6 +26,10 @@ PHP NEWS . Fixed bug #74383 (phar method parameters reflection correction). (mhagstrand) +- Standard: + . Fixed bug #74409 (Reflection information for ini_get_all() is incomplete). + (Sebastian Bergmann) + 13 Apr 2017 PHP 7.0.18 - Core: diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 37d24d4..99ca20f 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -735,6 +735,7 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_ini_get_all, 0, 0, 0) ZEND_ARG_INFO(0, extension) + ZEND_ARG_INFO(0, details) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO(arginfo_ini_set, 0)