From 947ac076d28d0df2781d4545673e273fd0485edd Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@osticket.com>
Date: Fri, 29 Jun 2012 00:58:31 -0400
Subject: [PATCH] Fix colspan on ticket thread view

---
 include/staff/ticket-view.inc.php | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/include/staff/ticket-view.inc.php b/include/staff/ticket-view.inc.php
index b8a2e8097..cb7db2a53 100644
--- a/include/staff/ticket-view.inc.php
+++ b/include/staff/ticket-view.inc.php
@@ -236,12 +236,13 @@ if(!$cfg->showNotesInline()) { ?>
             <tr>
                 <th width="200"><?php echo Format::db_datetime($entry['created']);?></th>
                 <th width="440"><span><?php echo Format::htmlchars($entry['title']); ?></span></th>
-                <th width="300" class="tmeta"><?php echo Format::htmlchars($entry['poster']); ?></th></tr>
-            <tr><td colspan=2><?php echo Format::display($entry['body']); ?></td></tr>
+                <th width="300" class="tmeta"><?php echo Format::htmlchars($entry['poster']); ?></th>
+            </tr>
+            <tr><td colspan=3><?php echo Format::display($entry['body']); ?></td></tr>
             <?php
             if($entry['attachments'] && ($links=$ticket->getAttachmentsLinks($entry['id'], $entry['thread_type']))) {?>
             <tr>
-                <td class="info" colspan=2><?php echo $links; ?></td>
+                <td class="info" colspan=3><?php echo $links; ?></td>
             </tr>
             <?php
             }?>
-- 
GitLab