Moving some HTML out of PHP
authorjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 15 Aug 2004 23:54:32 +0000 (23:54 +0000)
committerjervfors <jervfors@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Sun, 15 Aug 2004 23:54:32 +0000 (23:54 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@7918 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/view_text.php

index 2c2b54b47db4152a3baec72c9d4227953f588528..d0c387426eec66a107812558a2c8934990fac171 100644 (file)
@@ -40,7 +40,7 @@ if (sqgetGlobalVar('passed_id', $temp, SQ_GET)) {
 }
 
 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
 }
 
 $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)) {
 
 $message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id];
 if (!is_object($message)) {
@@ -77,18 +77,22 @@ if ($type1 == 'html' || (isset($override_type1) &&  $override_type1 == 'html'))
 }
 
 displayPageHeader($color, 'None');
 }
 
 displayPageHeader($color, 'None');
-
-echo '<br /><table width="100%" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td bgcolor="' . $color[0] . '">' .
-     '<b><center>' .
-     _("Viewing a text attachment") . ' - ' .
-     '<a href="'.$msg_url.'">'. _("View message") . '</a>' .
-     '</b></td><tr><tr><td><center><a href="' . $dwnld_url . '">' .
-     _("Download this as a file") .
-     '</a></center><br />' .
-     '</center></b>' .
-     '</td></tr></table>' .
-     '<table width="98%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="' . $color[0] . '">' .
-     '<tr><td bgcolor="' . $color[4] . '"><tt>' .
-     $body . '</tt></td></tr></table>' .
-     '</body></html>';
-?>
\ No newline at end of file
+?>
+<br /><table width="100%" border="0" cellspacing="0" cellpadding="0" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
+<b><center>
+<?php
+echo _("Viewing a text attachment") . ' - ' .
+     '<a href="'.$msg_url.'">'. _("View message") . '</a>';
+?>
+</b></td><tr><tr><td><center>
+<?php
+echo '<a href="' . $dwnld_url . '">' . _("Download this as a file") . '</a>';
+?>
+</center><br />
+</center></b>
+</td></tr></table>
+<table width="98%" border="0" cellspacing="0" cellpadding="2" align="center"><tr><td bgcolor="<?php echo $color[0]; ?>">
+<tr><td bgcolor="<?php echo $color[4]; ?>"><tt>
+<?php echo $body; ?>
+</tt></td></tr></table>
+</body></html>