X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=517138115be24b0b5fe15fbd37be2d7b02183659;hp=d86fe1782b61b0bc238ac56abd99a69dedc1dbc5;hb=8b213268c9e6df48ff7d7addb1b74557982efff9;hpb=6e515418431c0a99f10705da21366fe7093f95b6 diff --git a/src/view_text.php b/src/view_text.php index d86fe178..51713811 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -5,12 +5,15 @@ * * Used by attachment_common code. * - * @copyright © 1999-2006 The SquirrelMail Project Team + * @copyright 1999-2011 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id$ * @package squirrelmail */ +/** This is the view_text page */ +define('PAGE_NAME', 'view_text'); + /** SquirrelMail required files. */ include('../include/init.php'); include(SM_PATH . 'functions/imap_general.php'); @@ -24,9 +27,7 @@ sqgetGlobalVar('mailbox', $mailbox, SQ_GET); sqgetGlobalVar('ent_id', $ent_id, SQ_GET); sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET); sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER); -if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) { - $passed_id = (int) $temp; -} +sqgetGlobalVar('passed_id', $passed_id, SQ_GET, NULL, SQ_TYPE_BIGINT); $imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); @@ -65,17 +66,17 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { $ishtml = TRUE; - $body = MagicHTML( $body, $passed_id, $message, $mailbox); // html attachment with character set information if (! empty($charset)) { $body = charset_decode($charset,$body,false,true); } + $body = MagicHTML( $body, $passed_id, $message, $mailbox); } else { $ishtml = FALSE; translateText($body, $wrap_at, $charset); } -displayPageHeader($color, 'None'); +displayPageHeader($color); $oTemplate->assign('view_message_href', $msg_url); $oTemplate->assign('download_href', $dwnld_url); @@ -85,4 +86,3 @@ $oTemplate->assign('body', $body); $oTemplate->display('view_text.tpl'); $oTemplate->display('footer.tpl'); -?>