Custom option page values now repopulate correctly when save action goes back to...
[squirrelmail.git] / src / image.php
1 <?php
2
3 /**
4 * image.php
5 *
6 * Copyright (c) 1999-2004 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file shows an attached image
10 *
11 * @version $Id$
12 * @package squirrelmail
13 */
14
15 /**
16 * Path for SquirrelMail required files.
17 * @ignore
18 */
19 define('SM_PATH','../');
20
21 /* SquirrelMail required files. */
22 require_once(SM_PATH . 'include/validate.php');
23 require_once(SM_PATH . 'functions/global.php');
24 require_once(SM_PATH . 'functions/date.php');
25 require_once(SM_PATH . 'functions/page_header.php');
26 require_once(SM_PATH . 'functions/html.php');
27 require_once(SM_PATH . 'include/load_prefs.php');
28
29 displayPageHeader($color, 'None');
30
31 /* globals */
32 if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
33 $passed_id = (int) $temp;
34 }
35 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
36 sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
37 sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
38 /* end globals */
39
40 echo '<BR>' .
41 '<TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
42 "\n" .
43 '<TR><TD BGCOLOR="' . $color[0] . '">' .
44 '<B><CENTER>' .
45 _("Viewing an image attachment") . " - ";
46
47 $msg_url = 'read_body.php?' . $QUERY_STRING;
48 $msg_url = set_url_var($msg_url, 'ent_id', 0);
49 echo '<a href="'.$msg_url.'">'. _("View message") . '</a>';
50
51
52 $DownloadLink = '../src/download.php?passed_id=' . $passed_id .
53 '&amp;mailbox=' . urlencode($mailbox) .
54 '&amp;ent_id=' . urlencode($ent_id) . '&amp;absolute_dl=true';
55
56 echo '</b></td></tr>' . "\n" .
57 '<tr><td align=center><A HREF="' . $DownloadLink . '">' .
58 _("Download this as a file") .
59 '</A></B><BR>&nbsp;' . "\n" .
60 '</TD></TR></TABLE>' . "\n" .
61
62 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' . "\n" .
63 '<TR><TD BGCOLOR="' . $color[4] . '">' .
64 '<img src="' . $DownloadLink . '">' .
65
66 '</TD></TR></TABLE>' . "\n";
67 '</body></html>' . "\n";
68
69 ?>