summaryrefslogtreecommitdiff
path: root/ext/intl/php_intl.c
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-07-07 00:48:44 -0700
committerStanislav Malyshev <stas@php.net>2014-07-07 00:48:44 -0700
commit8ba240a70b22f50483818cc0302fd264b1a22fc9 (patch)
tree1d220e92924f43c67fcc0ac8f4079cd7ddd4201a /ext/intl/php_intl.c
parent8ddf9a2dc4f526821b794cc0b6f537d2cc013d27 (diff)
downloadphp-git-8ba240a70b22f50483818cc0302fd264b1a22fc9.tar.gz
Fix bug #66921 - Wrong argument type hint for function intltz_from_date_time_zone
Diffstat (limited to 'ext/intl/php_intl.c')
-rw-r--r--ext/intl/php_intl.c2
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 )