From b6da0b76afb5697685c35b8584631294cfc7b12f Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Wed, 07 Dec 2011 05:41:15 -0500 Subject: [PATCH] - Remove deprecated global $IMAP variable usage (#1488148) --- program/steps/mail/headers.inc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/program/steps/mail/headers.inc b/program/steps/mail/headers.inc index bc7f942..5eee4bd 100644 --- a/program/steps/mail/headers.inc +++ b/program/steps/mail/headers.inc @@ -4,7 +4,7 @@ | program/steps/mail/headers.inc | | | | This file is part of the Roundcube Webmail client | - | Copyright (C) 2005-2007, Roundcube Dev. - Switzerland | + | Copyright (C) 2005-2007, The Roundcube Dev Team | | Licensed under the GNU GPL | | | | PURPOSE: | @@ -20,7 +20,7 @@ if ($uid = get_input_value('_uid', RCUBE_INPUT_POST)) { - $source = $IMAP->get_raw_headers($uid); + $source = $RCMAIL->imap->get_raw_headers($uid); if ($source !== false) { $source = htmlspecialchars(trim($source)); -- Gitblit v1.9.1