[Vtigercrm-commits] [vtiger-commits] r6602 - /vtigercrm/trunk/modules/Webmails/DetailView.php

vtigercrm-commits at vtiger.fosslabs.com vtigercrm-commits at vtiger.fosslabs.com
Sun May 28 05:12:11 EDT 2006


Author: mmbrich
Date: Sun May 28 03:12:10 2006
New Revision: 6602

Log:
UI cleanups

Modified:
    vtigercrm/trunk/modules/Webmails/DetailView.php

Modified: vtigercrm/trunk/modules/Webmails/DetailView.php
==============================================================================
--- vtigercrm/trunk/modules/Webmails/DetailView.php (original)
+++ vtigercrm/trunk/modules/Webmails/DetailView.php Sun May 28 03:12:10 2006
@@ -2,6 +2,9 @@
 require_once('include/utils/UserInfoUtil.php');
 require_once("modules/Webmails/Webmail.php");
 require_once("modules/Webmails/MailParse.php");
+
+global $app_strings;
+global $mod_strings;
 
 if(isset($_REQUEST["mailbox"]) && $_REQUEST["mailbox"] != "") { $mailbox=$_REQUEST["mailbox"];} else { $mailbox = "INBOX";}
 if(isset($_REQUEST["mailid"]) && $_REQUEST["mailid"] != "") { $mailid=$_REQUEST["mailid"];} else { echo "ERROR";flush();exit();}
@@ -16,11 +19,11 @@
 $webmail->loadMail();
 
 
-echo '<table width="100%" cellpadding="0" cellspacing="0" border="0"><tr>';
+echo '<table width="100%" cellpadding="0" cellspacing="0" border="0" class="previewWindow"><tr>';
 
-echo '<td style="background-color:#CCCC99">';
+echo '<td>';
 
-echo '<table border="1" width="100%" cellpadding="0" cellspacing="0">';
+echo '<table border="0" width="100%" cellpadding="0" cellspacing="0">';
 echo '<tr><td width="10%">From:</td><td>'.$webmail->fromname.'</td></tr>';
 echo '<tr><td width="10%">To:</td><td>'.implode(" ",$webmail->to).'</td></tr>';
 echo '<tr><td width="10%">Subject:</td><td>'.$webmail->subject.'</td></tr>';





More information about the vtigercrm-commits mailing list