X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=948420e016b5ba1728b9c2791c281d66ac10530a;hb=ac589f55403198b60460b8c1dbf09d27a072d3ec;hp=0b3aeb8a102157d519479a31867da1ebcacc6e4b;hpb=906f7e9fa070f6df07bd4ba8c72a9c7908039761;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index 0b3aeb8a..948420e0 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -48,6 +48,9 @@ $encoding = strtolower($header->encoding); $msg_url = 'read_body.php?' . $QUERY_STRING; $msg_url = set_url_var($msg_url, 'ent_id', 0); $dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true'; +$unsafe_url = 'view_text.php?' . $QUERY_STRING; +$unsafe_url = set_url_var($unsafe_url, 'view_unsafe_images', 1); + $body = mime_fetch_body($imapConnection, $passed_id, $ent_id); $body = decodeBody($body, $encoding); @@ -62,11 +65,14 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && } if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $ishtml = TRUE; $body = MagicHTML( $body, $passed_id, $message, $mailbox); // html attachment with character set information - if (! empty($charset)) + if (! empty($charset)) { $body = charset_decode($charset,$body,false,true); + } } else { + $ishtml = FALSE; translateText($body, $wrap_at, $charset); } @@ -80,6 +86,9 @@ echo _("Viewing a text attachment") . ' - ' . ?>
' . _("View Unsafe Images") . ' | '; +} echo '' . _("Download this as a file") . ''; ?>