<?php
/**
* image.php
*
* This file shows an attached image
*
* @copyright 1999-2020 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: image.php 14845 2020年01月07日 08:09:34Z pdontthink $
* @package squirrelmail
*/
/** This is the image page */
define ('PAGE_NAME', 'image');
/**
* Include the SquirrelMail initialization file.
*/
require('../include/init.php');
/* globals */
/* end globals */
echo '<br />' .
'<table width="100%" border="0" cellspacing="0" cellpadding="2" align="center">' .
"\n" .
'<tr><td bgcolor="' . $color[0] . '">' .
'<div style="text-align: center;"><b>' .
_ ("Viewing an image attachment") .
" - ";
$msg_url = 'read_body.php?' . $QUERY_STRING;
echo
'<a href="'.
$msg_url.
'">'.
_ ("View message") .
'</a>';
$DownloadLink = '../src/download.php?passed_id=' . $passed_id .
'&ent_id=' .
urlencode ($ent_id) .
'&absolute_dl=true';
?>
</b></div></td></tr>
<tr><td align="center">
<a href="
<?php echo
$DownloadLink; ?>">
<?php echo
_ ("Download this as a file"); ?></a>
<br /> </td></tr></table>
<table border="0" cellspacing="0" cellpadding="2" align="center">
<tr><td bgcolor="<?php echo $color[4]; ?>">
<img src="<?php echo $DownloadLink; ?>" />
</td></tr></table>
<?php
$oTemplate->display('footer.tpl');