diff options
author | Stanislav Malyshev <stas@php.net> | 2008-07-22 20:23:47 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2008-07-22 20:23:47 +0000 |
commit | d54c396dcaaa220f620463ce750cd9180830b179 (patch) | |
tree | c481a1a58250776ce01a582b5acc7002c79c7d23 /ext/intl/msgformat/msgformat_parse.c | |
parent | 1fb3313f7584b8554f774d8351a0e283fe814ade (diff) | |
download | php-git-d54c396dcaaa220f620463ce750cd9180830b179.tar.gz |
refactor ctors, cleanup code
Diffstat (limited to 'ext/intl/msgformat/msgformat_parse.c')
-rwxr-xr-x | ext/intl/msgformat/msgformat_parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/intl/msgformat/msgformat_parse.c b/ext/intl/msgformat/msgformat_parse.c index decd737a6c..3318292398 100755 --- a/ext/intl/msgformat/msgformat_parse.c +++ b/ext/intl/msgformat/msgformat_parse.c @@ -127,7 +127,7 @@ PHP_FUNCTION( msgfmt_parse_message ) slocale = INTL_G(default_locale); } - if(msfgotmat_fix_quotes(&spattern, &spattern_len, &INTL_DATA_ERROR_CODE(mfo)) != SUCCESS) { + if(msgformat_fix_quotes(&spattern, &spattern_len, &INTL_DATA_ERROR_CODE(mfo)) != SUCCESS) { intl_error_set( NULL, U_INVALID_FORMAT_ERROR, "msgfmt_parse_message: error converting pattern to quote-friendly format", 0 TSRMLS_CC ); RETURN_FALSE; |