From a2f8e49c751312f6b15e9a0d8aa562c2e1a4dc9e Mon Sep 17 00:00:00 2001 From: alec Date: Fri, 28 Aug 2009 11:11:32 +0000 Subject: - Fix charset bug during loading attachment file (#1486064) git-svn-id: https://svn.roundcube.net/trunk@2885 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/program/steps/mail/get.inc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/roundcubemail/program/steps/mail/get.inc b/roundcubemail/program/steps/mail/get.inc index f86c152c6..47dbc5f9c 100644 --- a/roundcubemail/program/steps/mail/get.inc +++ b/roundcubemail/program/steps/mail/get.inc @@ -25,11 +25,11 @@ if (!empty($_GET['_preload'])) { $url = str_replace('&_preload=1', '', $_SERVER['REQUEST_URI']); $message = rcube_label('loadingdata'); - print "\n\n" . - '' . - "\n\n" . - $message . - "\n\n"; + header('Content-Type: text/html; charset=' . RCMAIL_CHARSET); + print "\n\n" + . '' . "\n" + . '' . "\n" + . "\n\n$message\n\n"; exit; } -- cgit v1.2.3