From 01c86f2e7c9eb4f2dff6d670ea8f36c431b9b476 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Sat, 04 Mar 2006 08:45:30 -0500
Subject: [PATCH] Minor bugfixes

---
 program/steps/mail/func.inc |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/program/steps/mail/func.inc b/program/steps/mail/func.inc
index 926121d..dc510b0 100644
--- a/program/steps/mail/func.inc
+++ b/program/steps/mail/func.inc
@@ -300,12 +300,12 @@
 
   // add col definition
   $out .= '<colgroup>';
-  $out .= '<col class="icon">';
+  $out .= '<col class="icon" />';
 
   foreach ($a_show_cols as $col)
-    $out .= sprintf('<col class="%s">', $col);
+    $out .= sprintf('<col class="%s" />', $col);
 
-  $out .= '<col class="icon">';
+  $out .= '<col class="icon" />';
   $out .= "</colgroup>\n";
 
   // add table title
@@ -365,7 +365,6 @@
 
   $out .= '<td class="icon">'.($attrib['attachmenticon'] ? sprintf($image_tag, $skin_path, $attrib['attachmenticon'], '') : '')."</td>\n";
   $out .= "</tr></thead>\n<tbody>\n";
-
 
   // no messages in this mailbox
   if (!sizeof($a_headers))

--
Gitblit v1.9.1