diff options
author | Stanislav Malyshev <stas@php.net> | 2014-07-07 00:50:15 -0700 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2014-07-07 00:50:15 -0700 |
commit | 70c0410d3db15d5a274be14f561d3f05b44459b8 (patch) | |
tree | e0ff898d83394c1ae82caaddd32e4a637c7dade7 /ext/intl/php_intl.c | |
parent | ff52eac5f040df70d937f8da82d1295b1619ae1e (diff) | |
parent | 04a227dd1610355ce2a86a3bad718c86eed1e6fa (diff) | |
download | php-git-70c0410d3db15d5a274be14f561d3f05b44459b8.tar.gz |
Merge branch 'PHP-5.6'
* PHP-5.6:
Fix bug #66921 - Wrong argument type hint for function intltz_from_date_time_zone
fix format
Diffstat (limited to 'ext/intl/php_intl.c')
-rw-r--r-- | ext/intl/php_intl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/php_intl.c b/ext/intl/php_intl.c index 65e53c8b5e..ff1627a18f 100644 --- a/ext/intl/php_intl.c +++ b/ext/intl/php_intl.c @@ -445,7 +445,7 @@ ZEND_BEGIN_ARG_INFO_EX( arginfo_tz_idarg_static, 0, 0, 1 ) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX( arginfo_tz_from_date_time_zone, 0, 0, 1 ) - ZEND_ARG_OBJ_INFO( 0, dateTimeZone, IntlDateTimeZone, 0 ) + ZEND_ARG_OBJ_INFO( 0, dateTimeZone, DateTimeZone, 0 ) ZEND_END_ARG_INFO() ZEND_BEGIN_ARG_INFO_EX( arginfo_tz_create_enumeration, 0, 0, 0 ) |