X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=d7cf0fdb21db0d7ef76feb9e9c7a7fba41ed44d1;hp=d0c387426eec66a107812558a2c8934990fac171;hb=a15b73a49b070358cf1e8ec699911df67e58ef9e;hpb=24419a724250992245ee1a9e0753577667c8eeec diff --git a/src/view_text.php b/src/view_text.php index d0c38742..d7cf0fdb 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); } @@ -58,10 +48,14 @@ $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'; +$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") . ''; -?> -

- -
-
-
- -
- +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');