From: Hannes Magnusson Date: Tue, 30 Dec 2008 18:55:16 +0000 (+0000) Subject: Fix arginfo and proto X-Git-Tag: php-5.3.0beta1~347 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7cfc6b9116061b22b20729184212e0eb3f33a2ed;p=php Fix arginfo and proto --- diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 2180f582a5..1d65637745 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -118,7 +118,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_each, 0, 0, 1) ZEND_ARG_INFO(1, arr) ZEND_END_ARG_INFO() -ZEND_BEGIN_ARG_INFO_EX(arginfo_error_reporting, 0, 0, 1) +ZEND_BEGIN_ARG_INFO_EX(arginfo_error_reporting, 0, 0, 0) ZEND_ARG_INFO(0, new_error_level) ZEND_END_ARG_INFO() @@ -582,7 +582,7 @@ ZEND_FUNCTION(each) /* }}} */ -/* {{{ proto int error_reporting(int new_error_level=null) +/* {{{ proto int error_reporting([int new_error_level]) Return the current error_reporting level, and if an argument was passed - change to the new level */ ZEND_FUNCTION(error_reporting) {