diff options
author | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-05-06 16:31:52 +0200 |
---|---|---|
committer | Gustavo André dos Santos Lopes <cataphract@php.net> | 2012-05-13 20:53:05 +0100 |
commit | 20dd5ccf19916a290973a2e25de4eed59b169093 (patch) | |
tree | 5a7897a4541969a625cff7eb1b42b2c388c92d88 /ext/intl/msgformat/msgformat_format.c | |
parent | 407455876e486df45a6b6c91b483060b0479a0b3 (diff) | |
download | php-git-20dd5ccf19916a290973a2e25de4eed59b169093.tar.gz |
Cache arguments type info in MessageFormatter.
Diffstat (limited to 'ext/intl/msgformat/msgformat_format.c')
-rwxr-xr-x | ext/intl/msgformat/msgformat_format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/msgformat/msgformat_format.c b/ext/intl/msgformat/msgformat_format.c index 099dbcb4b6..412a5f7b29 100755 --- a/ext/intl/msgformat/msgformat_format.c +++ b/ext/intl/msgformat/msgformat_format.c @@ -57,7 +57,7 @@ static void msgfmt_do_format(MessageFormatter_object *mfo, zval *args, zval *ret zend_hash_copy(args_copy, Z_ARRVAL_P(args), (copy_ctor_func_t)zval_add_ref, NULL, sizeof(zval*)); - umsg_format_helper(MSG_FORMAT_OBJECT(mfo), args_copy, + umsg_format_helper(mfo, args_copy, &formatted, &formatted_len, &INTL_DATA_ERROR_CODE(mfo) TSRMLS_CC); zend_hash_destroy(args_copy); |