diff options
Diffstat (limited to 'ext/intl/intl_error.c')
-rw-r--r-- | ext/intl/intl_error.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/intl/intl_error.c b/ext/intl/intl_error.c index 0118ef652d..a88b559572 100644 --- a/ext/intl/intl_error.c +++ b/ext/intl/intl_error.c @@ -237,8 +237,8 @@ void intl_register_IntlException_class( void ) /* Create and register 'IntlException' class. */ INIT_CLASS_ENTRY_EX( ce, "IntlException", sizeof( "IntlException" ) - 1, NULL ); IntlException_ce_ptr = zend_register_internal_class_ex( &ce, - zend_exception_ce ); - IntlException_ce_ptr->create_object = zend_exception_ce->create_object; + zend_ce_exception ); + IntlException_ce_ptr->create_object = zend_ce_exception->create_object; } smart_str intl_parse_error_to_string( UParseError* pe ) |