X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=90c7215f0ae220240466d88e3313cc91ff2252d7;hb=a0fef6da0165f633881f5d3d3892cfc130cb7a23;hp=e2ea3f02e4bec4f6345560867b15390e4bc24e0a;hpb=567dc5244e08bf50998e3ac590c64674b72de53d;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index e2ea3f02..90c7215f 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -5,12 +5,15 @@ * * Used by attachment_common code. * - * @copyright © 1999-2007 The SquirrelMail Project Team + * @copyright 1999-2012 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); @@ -85,4 +86,3 @@ $oTemplate->assign('body', $body); $oTemplate->display('view_text.tpl'); $oTemplate->display('footer.tpl'); -?>