X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=0ee4a94d80fa731b6ce62d38a755cf8169a83ac1;hp=3f3bff810ad03b40a68543e27f342e46ef6edbc3;hb=HEAD;hpb=f63fd5f01e50e7843f45c64a47332013d6ded1b3 diff --git a/src/view_text.php b/src/view_text.php index 3f3bff81..0ee4a94d 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,44 +1,36 @@ 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); -$hookResults = do_hook('message_body', $body); -$body = $hookResults[1]; +do_hook('message_body', $body); if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) { @@ -72,33 +66,24 @@ if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && } if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { - $body = MagicHTML( $body, $passed_id, $message, $mailbox); + $ishtml = TRUE; // html attachment with character set information - if (! empty($charset)) + 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") . ''; -?> -

- -
-
-
- -
-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'); -?> \ No newline at end of file