r393: Localizations
[bugdar.git] / viewattachment.php
1 <?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 \*=====================================================================*/
12
13 ob_start();
14
15 define('SVN', '$Id$');
16
17 $focus['showreport'] = 'focus';
18
19 require_once('./global.php');
20
21 $attachment = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "attachment WHERE attachmentid = " . intval($bugsys->in['attachmentid']));
22 if (!$attachment)
23 {
24 $message->error(lang::p('error_invalid_id'));
25 }
26
27 if (!can_perform('cangetattach') AND !can_perform('caneditattach'))
28 {
29 $message->error_permission();
30 }
31
32 ob_clean();
33 ob_end_clean();
34
35 if ($funct->fetch_extension($attachment['filename']) != 'txt')
36 {
37 header("Content-Disposition: inline; filename=$attachment[filename]");
38 header("Content-transfer-encoding: binary");
39 }
40 else
41 {
42 header("Content-Disposition: attachment; filename=$attachment[filename]");
43 }
44 header("Content-Length: " . strlen($attachment['attachment']));
45 header("Content-Type: $attachment[mimetype]");
46
47 print($attachment['attachment']);
48
49 /*=====================================================================*\
50 || ###################################################################
51 || # $HeadURL$
52 || # $Id$
53 || ###################################################################
54 \*=====================================================================*/
55 ?>