X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=517138115be24b0b5fe15fbd37be2d7b02183659;hp=49626f4e0d095c36ba42816c10b8229ea7997a71;hb=d9f83cf8cd23f773fde77e3233a10a07aa64b37b;hpb=867fed375310bddf80421e7ae711ec1f56402413 diff --git a/src/view_text.php b/src/view_text.php index 49626f4e..51713811 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,18 +1,19 @@ 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')) { @@ -67,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