diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-11-24 17:54:50 +0000 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2011-11-24 17:54:50 +0000 |
commit | fa4fe639447e821a0617b80609f18eb251d4bf2b (patch) | |
tree | efdf0245e5d419099e20fc0f5d17dd2f051db31c /ext/intl/php_intl.c | |
parent | d0a898d2a2852e697ea3d3bde6136993b75ad4f4 (diff) | |
download | php-git-fa4fe639447e821a0617b80609f18eb251d4bf2b.tar.gz |
- Support for UTS #46.
Diffstat (limited to 'ext/intl/php_intl.c')
-rwxr-xr-x | ext/intl/php_intl.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index de5226b3d8..efe0ddd242 100755 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -335,13 +335,15 @@ ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_idn_to_ascii, 0, 0, 1) ZEND_ARG_INFO(0, domain) ZEND_ARG_INFO(0, option) - ZEND_ARG_INFO(0, status) + ZEND_ARG_INFO(0, variant) + ZEND_ARG_INFO(1, idn_info) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX(arginfo_idn_to_utf8, 0, 0, 1) ZEND_ARG_INFO(0, domain) ZEND_ARG_INFO(0, option) - ZEND_ARG_INFO(0, status) + ZEND_ARG_INFO(0, variant) + ZEND_ARG_INFO(1, idn_info) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX( arginfo_resourcebundle_create_proc, 0, 0, 2 ) |