X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=src%2Fview_text.php;h=0aa24e99924e7da7d87f50c6ca6ed61f53627929;hb=787f3030091d4946466817cfcb6a50ab9925df4c;hp=2b983cb940b82060b78d4d015cb397845230e675;hpb=460aef76de99c847de9449bb099caf040fec6776;p=squirrelmail.git diff --git a/src/view_text.php b/src/view_text.php index 2b983cb9..0aa24e99 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,68 +1,88 @@ getEntity($passed_ent_id); +$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"]; +$message_ent = &$message->getEntity($ent_id); +if ($passed_ent_id) { + $message = &$message->getEntity($passed_ent_id); +} + +$header = $message_ent->header; +$charset = $header->getParameter('charset'); +$type0 = $header->type0; +$type1 = $header->type1; +$encoding = strtolower($header->encoding); - $header = $message->header; - $charset = $header->charset; - $type0 = $header->type0; - $type1 = $header->type1; - $encoding = strtolower($header->encoding); +$msg_url = 'read_body.php?' . $QUERY_STRING; +$msg_url = set_url_var($msg_url, 'ent_id', 0); - $msg_url = 'read_body.php?' . $QUERY_STRING; +$body = mime_fetch_body($imapConnection, $passed_id, $ent_id); +$body = decodeBody($body, $encoding); - $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); - $body = decodeBody($body, $encoding); +displayPageHeader($color, 'None'); - displayPageHeader($color, 'None'); +echo "
". + "
". + _("Viewing a text attachment") . " - "; +echo ''. _("View message") . ''; - echo "
". - "
". - _("Viewing a text attachment") . " - "; - echo ''. _("View message") . ''; +$dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=true'; +echo '
'. + _("Download this as a file"). + "

". + "". + "
". + "
". + "
"; +if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $body = MagicHTML( $body, $passed_id, $message, $mailbox); +} else { + translateText($body, $wrap_at, $charset); +} +echo $body . "
"; - $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=1'; - echo '
'. - _("Download this as a file"). - "

". - "". - "
". - "
". - "
"; - - if ($type1 == 'html') { - $msg = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $msg = $msg->getEntity($passed_ent_id); - $body = MagicHTML( $body, $passed_id, $msg ); - } else { - translateText($body, $wrap_at, $charset); - } - echo $body . - "
"; - - sqimap_logout($imapConnection); ?>