diff options
author | Christoph M. Becker <cmbecker69@gmx.de> | 2018-01-11 13:14:37 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-01-11 13:14:37 +0100 |
commit | 35e70af2085300418cab4a801730dbeb05d5d222 (patch) | |
tree | e43456a20431bc204a4d6f9ddae8a15b4443757d /Zend/zend_builtin_functions.c | |
parent | 45db77ed0d601e4be6252a1f742bc08f49408aad (diff) | |
parent | 7e1d2bd82af81e0d464d659d054756c577dece88 (diff) | |
download | php-git-35e70af2085300418cab4a801730dbeb05d5d222.tar.gz |
Merge branch 'PHP-7.2'
* PHP-7.2:
Fixed bug #75799 (arg of get_defined_functions is optional)
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 1a8ecf3c19..b5ab5bb815 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -193,7 +193,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_set_exception_handler, 0, 0, 1) ZEND_ARG_INFO(0, exception_handler) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 1) +ZEND_BEGIN_ARG_INFO_EX(arginfo_get_defined_functions, 0, 0, 0) ZEND_ARG_INFO(0, exclude_disabled) ZEND_END_ARG_INFO() |