From: Greg Beaver Date: Sat, 29 Dec 2007 01:37:12 +0000 (+0000) Subject: update proto, arginfo for webPhar X-Git-Tag: RELEASE_2_0_0a1~1083 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=06a98d96c748b6e5657b336a9d8c8057f473a7c0;p=php update proto, arginfo for webPhar --- diff --git a/ext/phar/phar_object.c b/ext/phar/phar_object.c index 11417112ae..3d5b45d53b 100755 --- a/ext/phar/phar_object.c +++ b/ext/phar/phar_object.c @@ -226,7 +226,7 @@ nofile: } } -/* {{{ proto void Phar::webPhar([string alias, [string index, [array mimetypes, [array redirects]]]]) +/* {{{ proto void Phar::webPhar([string alias, [string index, [string f404, [array mimetypes, [array redirects]]]]]) * mapPhar for web-based phars. Reads the currently executed file (a phar) * and registers its manifest. When executed in the CLI or CGI command-line sapi, * this works exactly like mapPhar(). When executed by a web-based sapi, this @@ -2299,6 +2299,7 @@ static ZEND_BEGIN_ARG_INFO_EX(arginfo_phar_webPhar, 0, 0, 0) ZEND_ARG_INFO(0, alias) ZEND_ARG_INFO(0, index) + ZEND_ARG_INFO(0, f404) ZEND_ARG_INFO(0, mimetypes) ZEND_ARG_INFO(0, redirects) ZEND_END_ARG_INFO();