fixed row formatting of the responses

This commit is contained in:
Quitta 2013-07-10 09:44:45 +02:00
parent 8dc95d2604
commit 4ab2c46091
2 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ class Ticket_Content{
public function getTContentId(){
return nl2br($this->tContentId);
return $this->tContentId;
}

View file

@ -16,8 +16,8 @@
{foreach from=$ticket_replies item=reply}
<tr>
<td>
<p><span class="label label-info">[ID{$reply.tReplyId}] {$reply.timestamp}</span></p>
<p><strong>{$username}</strong>{$reply.replyContent}</p>
<p><span class="label label-info">[ID{$reply.tReplyId}] {$reply.timestamp}</span> <span class="label label-warning"><strong>{$username}</span></strong></p>
<p><pre>{$reply.replyContent}</pre></p>
</td>
</tr>
{/foreach}