X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fimage.php;h=a91f96a48da4ae8a321131533b09de0fb11d0efe;hb=0e41b4ad1b52e0d550517a854429754a1933f851;hp=b695b5d33d3516d1ed7f19c1ec7a32784fb4c884;hpb=24fc49052db9408811aadf5b2e2740371553ace2;p=squirrelmail.git diff --git a/src/image.php b/src/image.php index b695b5d3..a91f96a4 100644 --- a/src/image.php +++ b/src/image.php @@ -3,19 +3,21 @@ /** * image.php * - * Copyright (c) 1999-2002 The SquirrelMail Project Team + * Copyright (c) 1999-2003 The SquirrelMail Project Team * Licensed under the GNU GPL. For full terms see the file COPYING. * * This file shows an attached image * * $Id$ + * @package squirrelmail */ -/* Path for SquirrelMail required files. */ +/** Path for SquirrelMail required files. */ define('SM_PATH','../'); /* SquirrelMail required files. */ require_once(SM_PATH . 'include/validate.php'); +require_once(SM_PATH . 'functions/global.php'); require_once(SM_PATH . 'functions/date.php'); require_once(SM_PATH . 'functions/page_header.php'); require_once(SM_PATH . 'functions/html.php'); @@ -24,10 +26,12 @@ require_once(SM_PATH . 'include/load_prefs.php'); displayPageHeader($color, 'None'); /* globals */ -$mailbox = $_GET['mailbox']; -$passed_id = $_GET['passed_id']; -$ent_id = $_GET['ent_id']; -$QUERY_STRING = $_SERVER['QUERY_STRING']; +if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) { + $passed_id = (int) $temp; +} +sqgetGlobalVar('mailbox', $mailbox, SQ_GET); +sqgetGlobalVar('ent_id', $ent_id, SQ_GET); +sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER); /* end globals */ echo '
' . @@ -44,7 +48,7 @@ echo ''. _("View message") . ''; $DownloadLink = '../src/download.php?passed_id=' . $passed_id . '&mailbox=' . urlencode($mailbox) . - '&ent_id=' . $ent_id . '&absolute_dl=true'; + '&ent_id=' . urlencode($ent_id) . '&absolute_dl=true'; echo '' . "\n" . '' .