alecpl
2009-08-28 3e8b11194d741fb1221ef143cf96685e76086d10
- Fix charset bug during loading attachment file (#1486064)


1 files modified
10 ■■■■ changed files
program/steps/mail/get.inc 10 ●●●● patch | view | raw | blame | history
program/steps/mail/get.inc
@@ -25,11 +25,11 @@
  $url = str_replace('&_preload=1', '', $_SERVER['REQUEST_URI']);
  $message = rcube_label('loadingdata');
  print "<html>\n<head>\n" .
        '<meta http-equiv="refresh" content="0; url='.Q($url).'">' .
        "\n</head>\n<body>" .
        $message .
        "\n</body>\n</html>";
  header('Content-Type: text/html; charset=' . RCMAIL_CHARSET);
  print "<html>\n<head>\n"
        . '<meta http-equiv="refresh" content="100; url='.Q($url).'">' . "\n"
        . '<meta http-equiv="content-type" content="text/html; charset='.RCMAIL_CHARSET.'">' . "\n"
        . "</head>\n<body>\n$message\n</body>\n</html>";
  exit;
}