Skip to content
Snippets Groups Projects
Commit 947ac076 authored by Peter Rotich's avatar Peter Rotich
Browse files

Fix colspan on ticket thread view

parent 4285770b
No related branches found
No related tags found
No related merge requests found
......@@ -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
}?>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment