X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=98a03bb12f2eb8a9b2f41c9440931e93ef572af8;hp=88210f1cc763f871c2c2f153654754479b7048f3;hb=91e0dccca7b2452d8b450791cae3aa4125e8889e;hpb=8f6f9ba5df6491d396aa690dcf3e5b9070a565ca diff --git a/src/view_text.php b/src/view_text.php index 88210f1c..98a03bb1 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -3,18 +3,21 @@ /** * view_text.php -- Displays the main frameset * - * Copyright (c) 1999-2003 The SquirrelMail development team + * Copyright (c) 1999-2004 The SquirrelMail development team * Licensed under the GNU GPL. For full terms see the file COPYING. * * Who knows what this file does. However PUT IT HERE DID NOT PUT * A SINGLE FREAKING COMMENT IN! Whoever is responsible for this, * be very ashamed. * - * $Id$ + * @version $Id$ * @package squirrelmail */ -/** Path for SquirrelMail required files. */ +/** + * Path for SquirrelMail required files. + * @ignore + */ define('SM_PATH','../'); /* SquirrelMail required files. */ @@ -37,7 +40,7 @@ if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) { } $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0); -$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); $message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id]; if (!is_object($message)) { @@ -55,15 +58,15 @@ $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'; $body = mime_fetch_body($imapConnection, $passed_id, $ent_id); $body = decodeBody($body, $encoding); if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && - function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) { + function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) { if (mb_detect_encoding($body) != 'ASCII') { - $body = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $body); + $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $body); } } @@ -74,18 +77,22 @@ if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) } displayPageHeader($color, 'None'); - -echo '
' . - '
' . - _("Viewing a text attachment") . ' - ' . - ''. _("View message") . '' . - '
' . - _("Download this as a file") . - '

' . - '' . - '
' . - '
' . - '
' . - $body . '
' . - ''; ?> +
+
+' . _("View message") . ''; +?> +
+' . _("Download this as a file") . ''; +?> +

+ +
+
+
+ +
+ \ No newline at end of file