X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fdownload.php;h=bbc37f6b53581b1717383ca099d1e8baadd514aa;hp=896e86be9d1241f566549a9ee9630e676e0eb7b0;hb=ba6d2a963accba3b98fff1d9acb5f1626705d832;hpb=d671df04e4c7b9667dfd43b2236b8ffcffb5f6d7 diff --git a/src/download.php b/src/download.php index 896e86be..bbc37f6b 100644 --- a/src/download.php +++ b/src/download.php @@ -6,7 +6,7 @@ * Handles attachment downloads to the users computer. * Also allows displaying of attachments when possible. * - * @copyright © 1999-2007 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 @@ -48,9 +48,7 @@ sqgetGlobalVar('mailbox', $mailbox, SQ_GET); sqgetGlobalVar('ent_id', $ent_id, SQ_GET); sqgetGlobalVar('absolute_dl',$absolute_dl, SQ_GET); sqgetGlobalVar('force_crlf', $force_crlf, SQ_GET); -if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) { - $passed_id = (int) $temp; -} +sqgetGlobalVar('passed_id', $passed_id, SQ_GET, NULL, SQ_TYPE_BIGINT); if (!sqgetGlobalVar('account', $account, SQ_GET) ) { $account = 0; } @@ -89,7 +87,7 @@ if ($ent_id) { /* raw message */ $type0 = 'message'; $type1 = 'rfc822'; - $encoding = 'US-ASCII'; + $encoding = '7bit'; $header = $message->header; }