diff options
author | Pierre Joye <pajoye@php.net> | 2010-02-07 13:06:54 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-02-07 13:06:54 +0000 |
commit | c58f63a38ae19caaab339c61486fc3bd7e5894f9 (patch) | |
tree | e57df377242816ca97ca5597ea2dbc96619e3710 /ext/imap/php_imap.c | |
parent | e37ba52900dc5349cdda995e176c19d9c682236e (diff) | |
download | php-git-c58f63a38ae19caaab339c61486fc3bd7e5894f9.tar.gz |
- Fixed #44098, imap_utf8() returns only capital letters
Diffstat (limited to 'ext/imap/php_imap.c')
-rw-r--r-- | ext/imap/php_imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/imap/php_imap.c b/ext/imap/php_imap.c index aaf1c96b64..5e47510d48 100644 --- a/ext/imap/php_imap.c +++ b/ext/imap/php_imap.c @@ -2664,7 +2664,7 @@ PHP_FUNCTION(imap_utf8) #ifndef HAVE_NEW_MIME2TEXT utf8_mime2text(&src, &dest); #else - utf8_mime2text(&src, &dest, U8T_CANONICAL); + utf8_mime2text(&src, &dest, U8T_DECOMPOSE); #endif RETVAL_STRINGL(dest.data, dest.size, 1); if (dest.data) { |