summaryrefslogtreecommitdiff
path: root/roundcubemail/program/steps/mail/viewsource.inc
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-07 10:41:15 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2011-12-07 10:41:15 +0000
commitea3d91249609d60de8ea570b2f7694fc283a175c (patch)
treebec327a12af45080ff03ed46cc7d665563af1aec /roundcubemail/program/steps/mail/viewsource.inc
parent34e371d586aa6fb180cb799a541d4fdf57925df4 (diff)
- Remove deprecated global $IMAP variable usage (#1488148)
git-svn-id: https://svn.roundcube.net/trunk@5563 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/steps/mail/viewsource.inc')
-rw-r--r--roundcubemail/program/steps/mail/viewsource.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/steps/mail/viewsource.inc b/roundcubemail/program/steps/mail/viewsource.inc
index e25fad132..d951fbead 100644
--- a/roundcubemail/program/steps/mail/viewsource.inc
+++ b/roundcubemail/program/steps/mail/viewsource.inc
@@ -24,12 +24,12 @@ ob_end_clean();
// similar code as in program/steps/mail/get.inc
if ($uid = get_input_value('_uid', RCUBE_INPUT_GET))
{
- $headers = $IMAP->get_headers($uid);
+ $headers = $RCMAIL->imap->get_headers($uid);
$charset = $headers->charset ? $headers->charset : $CONFIG['default_charset'];
header("Content-Type: text/plain; charset={$charset}");
if (!empty($_GET['_save'])) {
- $filename = ($headers->subject ? $IMAP->decode_header($headers->subject) : 'roundcube') . '.eml';
+ $filename = ($headers->subject ? $RCMAIL->imap->decode_header($headers->subject) : 'roundcube') . '.eml';
$browser = $RCMAIL->output->browser;
if ($browser->ie && $browser->ver < 7)
@@ -43,7 +43,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_GET))
header("Content-Disposition: attachment; filename=\"$filename\"");
}
- $IMAP->print_raw_body($uid);
+ $RCMAIL->imap->print_raw_body($uid);
}
else
{