diff options
| author | Hannes Magnusson <bjori@php.net> | 2009-06-21 20:40:53 +0000 | 
|---|---|---|
| committer | Hannes Magnusson <bjori@php.net> | 2009-06-21 20:40:53 +0000 | 
| commit | b293b35eaaa49e4f08e69f08b82a951d23618cc6 (patch) | |
| tree | 85b979e0a2f97d86702a67854a3fc4b433d505e9 /ext/date/php_date.c | |
| parent | 6b107d99be3660e8c2bcfc17626031f4d2c3b22c (diff) | |
| download | php-git-b293b35eaaa49e4f08e69f08b82a951d23618cc6.tar.gz | |
Fix proto and arginfo
Diffstat (limited to 'ext/date/php_date.c')
| -rw-r--r-- | ext/date/php_date.c | 3 | 
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/date/php_date.c b/ext/date/php_date.c index 5b9c7e9df3..364349ec31 100644 --- a/ext/date/php_date.c +++ b/ext/date/php_date.c @@ -331,6 +331,7 @@ ZEND_END_ARG_INFO()  ZEND_BEGIN_ARG_INFO_EX(arginfo_timezone_identifiers_list, 0, 0, 0)  	ZEND_ARG_INFO(0, what) +	ZEND_ARG_INFO(0, country)  ZEND_END_ARG_INFO()  ZEND_BEGIN_ARG_INFO(arginfo_timezone_abbreviations_list, 0) @@ -3737,7 +3738,7 @@ static int check_id_allowed(char *id, long what)  	return 0;  } -/* {{{ proto array timezone_identifiers_list([long what]) +/* {{{ proto array timezone_identifiers_list([long what[, string country]])     Returns numerically index array with all timezone identifiers.  */  PHP_FUNCTION(timezone_identifiers_list)  | 
