alecpl
2008-05-09 399835052076c8958edc52a0c4d7d40eba00ebb4
- Fixed (?) r1366 change (#1485050)


1 files modified
9 ■■■■■ changed files
program/include/rcube_imap.php 9 ●●●●● patch | view | raw | blame | history
program/include/rcube_imap.php
@@ -2341,8 +2341,10 @@
    $pos = strpos($input, '=?');
    if ($pos !== false)
      {
      // rfc: all line breaks or other characters not found in the Base64 Alphabet must be ignored by decoding software
      // delete all blanks between MIME-lines, differently we can receive unnecessary blanks and broken utf-8 symbols
      // rfc: all line breaks or other characters not found
      // in the Base64 Alphabet must be ignored by decoding software
      // delete all blanks between MIME-lines, differently we can
      // receive unnecessary blanks and broken utf-8 symbols
      $input = preg_replace("/\?=\s+=\?/", '?==?', $input);
      $out = substr($input, 0, $pos);
@@ -2361,7 +2363,8 @@
      }
      
    // no encoding information, use fallback
    return rcube_charset_convert($input, !empty($fallback) ? $fallback : $this->default_charset);
    return rcube_charset_convert($input,
      !empty($fallback) ? $fallback : $GLOBALS['CONFIG']['default_charset']);
    }