|
@@ -1,7 +1,7 @@
|
|
<?php
|
|
<?php
|
|
|
|
|
|
/**
|
|
/**
|
|
- * $Source$
|
|
|
|
|
|
+ * view_html
|
|
* Displays html message parts
|
|
* Displays html message parts
|
|
*
|
|
*
|
|
* File is used to display html message parts. Usually inside iframe.
|
|
* File is used to display html message parts. Usually inside iframe.
|
|
@@ -16,6 +16,9 @@
|
|
* @package squirrelmail
|
|
* @package squirrelmail
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
+/** This is the view_html page */
|
|
|
|
+define('PAGE_NAME', 'view_html');
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* Include the SquirrelMail initialization file.
|
|
* Include the SquirrelMail initialization file.
|
|
*/
|
|
*/
|
|
@@ -74,4 +77,3 @@ $body = MagicHTML( $body, $passed_id, $message, $mailbox);
|
|
/** TODO: charset might be part of html code. */
|
|
/** TODO: charset might be part of html code. */
|
|
header('Content-Type: text/html; charset=' . $charset);
|
|
header('Content-Type: text/html; charset=' . $charset);
|
|
echo $body;
|
|
echo $body;
|
|
-?>
|
|
|