X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=50553de57f9a90acab8c98b349b87271b69af14f;hp=98a03bb12f2eb8a9b2f41c9440931e93ef572af8;hb=1b15e6a5b3974eb9c77a5745246e889115efe881;hpb=91e0dccca7b2452d8b450791cae3aa4125e8889e diff --git a/src/view_text.php b/src/view_text.php index 98a03bb1..50553de5 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,52 +1,42 @@ getEntity($ent_id); +$message_ent = $message->getEntity($ent_id); if ($passed_ent_id) { $message = &$message->getEntity($passed_ent_id); } @@ -59,9 +49,13 @@ $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); +do_hook('message_body', $body); if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) { @@ -71,28 +65,24 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && } if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $ishtml = TRUE; + // html attachment with character set information + if (! empty($charset)) { + $body = charset_decode($charset,$body,false,true); + } $body = MagicHTML( $body, $passed_id, $message, $mailbox); } else { + $ishtml = FALSE; translateText($body, $wrap_at, $charset); } -displayPageHeader($color, 'None'); -?> -
-
-' . _("View message") . ''; -?> -
-' . _("Download this as a file") . ''; -?> -

- -
-
-
- -
- \ No newline at end of file +displayPageHeader($color); + +$oTemplate->assign('view_message_href', $msg_url); +$oTemplate->assign('download_href', $dwnld_url); +$oTemplate->assign('view_unsafe_image_href', $ishtml ? $unsafe_url : ''); +$oTemplate->assign('body', $body); + +$oTemplate->display('view_text.tpl'); + +$oTemplate->display('footer.tpl');