X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=90c7215f0ae220240466d88e3313cc91ff2252d7;hb=a0fef6da0165f633881f5d3d3892cfc130cb7a23;hp=563b8778db7a1a020baa5d6c40bd9bf98d6150e7;hpb=202bcbcc2b67c7c153db1b09b608b62beeba0496;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index 563b8778..90c7215f 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,20 +1,20 @@ 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')) { @@ -68,33 +65,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