]>
src.bluestatic.org Git - bugdar.git/blob - viewattachment.php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
15 define('SVN', '$Id$');
17 $focus['showreport
'] = 'focus
';
19 require_once('./global.php
');
21 $attachment = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "attachment WHERE attachmentid = " . intval($bugsys->in['attachmentid
']));
24 $message->error($lang->getlex('error_invalid_id
'));
27 if (!can_perform('cangetattach
') AND !can_perform('caneditattach
'))
29 $message->error_permission();
35 if ($funct->fetch_extension($attachment['filename
']) != 'txt
')
37 header("Content-Disposition: inline; filename=$attachment[filename]");
38 header("Content-transfer-encoding: binary");
42 header("Content-Disposition: attachment; filename=$attachment[filename]");
44 header("Content-Length: " . strlen($attachment['attachment
']));
45 header("Content-Type: $attachment[mimetype]");
47 print($attachment['attachment
']);
49 /*=====================================================================*\
50 || ###################################################################
53 || ###################################################################
54 \*=====================================================================*/