diff options
author | Felipe Pena <felipe@php.net> | 2008-07-06 01:57:39 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2008-07-06 01:57:39 +0000 |
commit | 73d93df417967d8b939558e7828ec1648d97c5f9 (patch) | |
tree | 16cfff46cc60942b47734a41eb58d142a601ba69 | |
parent | 816e66a85af8aebd630aedd9c46749035a901265 (diff) | |
download | php-git-73d93df417967d8b939558e7828ec1648d97c5f9.tar.gz |
- Fixed arginfo
-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 25c1e773b8..5beb229426 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -158,7 +158,7 @@ ZEND_END_ARG_INFO() static ZEND_BEGIN_ARG_INFO_EX(arginfo_each, 0, 0, 1) - ZEND_ARG_INFO(0, arr) + ZEND_ARG_INFO(1, arr) ZEND_END_ARG_INFO() static |