Aleksander Machniak
2012-09-12 40e1c2d14d11c679d97c00ce831b32d43fad4d32
Don't use charset aliases for destination charset - fixes e.g.
converting to US-ASCII
1 files modified
4 ■■■■ changed files
program/include/rcube_charset.php 4 ●●●● patch | view | raw | blame | history
program/include/rcube_charset.php
@@ -86,7 +86,7 @@
     * Sometimes charset string is malformed, there are also charset aliases 
     * but we need strict names for charset conversion (specially utf8 class)
     *
     * @param  string Input charset name
     * @param string $input Input charset name
     *
     * @return string The validated charset name
     */
@@ -178,7 +178,7 @@
        static $mbstring_list   = null;
        static $conv            = null;
        $to   = empty($to) ? strtoupper(RCMAIL_CHARSET) : self::parse_charset($to);
        $to   = empty($to) ? strtoupper(RCMAIL_CHARSET) : $to;
        $from = self::parse_charset($from);
        // It is a common case when UTF-16 charset is used with US-ASCII content (#1488654)