Some fixup:
[squirrelmail.git] / src / image.php
CommitLineData
7baf86a9 1<?php
2d367c68 2 /**
3 ** image.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** This file shows an attached image
9 **
10 ** $Id$
11 **/
7baf86a9 12
13 require_once('../src/validate.php');
14 require_once('../functions/date.php');
15 require_once('../functions/page_header.php');
16 require_once('../src/load_prefs.php');
17
18
19 displayPageHeader($color, 'None');
20
21 echo '<BR>' .
22 '<TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' .
23 "\n" .
24 '<TR><TD BGCOLOR="' . $color[0] . '">' .
25 '<B><CENTER>' .
26 _("Viewing an image attachment") . " - ";
27 if (isset($where) && isset($what)) {
28 // from a search
29 echo '<a href="../src/read_body.php?mailbox=' . urlencode($mailbox) .
30 '&passed_id=' . $passed_id . '&where=' . urlencode($where) .
31 '&what=' . urlencode($what). '">' . _("View message") . '</a>';
32 } else {
33 echo '<a href="../src/read_body.php?mailbox=' . urlencode($mailbox) .
34 '&passed_id=' . $passed_id . '&startMessage=' . $startMessage .
35 '&show_more=0">' . _("View message") . '</a>';
36 }
37
38 $DownloadLink = '../src/download.php?passed_id=' . $passed_id .
39 '&mailbox=' . urlencode($mailbox) .
40 '&passed_ent_id=' . $passed_ent_id . '&absolute_dl=true';
41
42 echo '</b></td></tr>' . "\n" .
43 '<tr><td align=center><A HREF="' . $DownloadLink . '">' .
44 _("Download this as a file") .
45 '</A></B><BR>&nbsp;' . "\n" .
46 '</TD></TR></TABLE>' . "\n" .
47
48 '<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER>' . "\n" .
49 '<TR><TD BGCOLOR="' . $color[4] . '">' .
50 '<img src="' . $DownloadLink . '">' .
51
52 '</TD></TR></TABLE>' . "\n";
53 '</body></html>' . "\n";
54
55?>