X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=7d57fd729e49cefe0ede2cd3b7595ccd19ff1445;hp=d8bf19f8c8f345db61943ce1057b37c324d44fb1;hb=5984aeb0c19c5baf04551d328a518e653176aead;hpb=f5563549df6f554b393d358ad6e1c771c2befacb diff --git a/src/view_text.php b/src/view_text.php index d8bf19f8..7d57fd72 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -14,9 +14,12 @@ $mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); $message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"]; - $message = &$message->getEntity($ent_id); - - $header = $message->header; + $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; @@ -25,7 +28,7 @@ $msg_url = 'read_body.php?' . $QUERY_STRING; $msg_url = set_url_var($msg_url, 'ent_id', 0); - $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); + $body = mime_fetch_body($imapConnection, $passed_id, $ent_id); $body = decodeBody($body, $encoding); displayPageHeader($color, 'None'); @@ -35,7 +38,7 @@ _("Viewing a text attachment") . " - "; echo ''. _("View message") . ''; - $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=1'; + $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=true'; echo '
'. _("Download this as a file"). "

". @@ -43,11 +46,8 @@ "". "
". "
"; - - if ($type1 == 'html') { - $msg = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $msg = $msg->getEntity($passed_ent_id); - $body = MagicHTML( $body, $passed_id, $msg ); + if ($type1 == 'html' || $override_type1 == 'html') { + $body = MagicHTML( $body, $passed_id, $message, $mailbox); } else { translateText($body, $wrap_at, $charset); }