Skip to content

Commit

Permalink
Increase replied ticket visibility (ticket # is bold/red if replied to)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Nahmias committed Apr 30, 2016
1 parent d2e5828 commit 449cb44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion include/staff/tickets.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ class="icon-trash"></i> <?php echo __('Delete'); ?></a>
), 40);
$threadcount=$row['thread_count'];
if(!strcasecmp($row['state'],'open') && !$row['isanswered'] && !$row['lock_id']) {
$tid=sprintf('<b>%s</b>',$tid);
//Makes ticket number bold/red if replied to
$tid=sprintf('<font color=red><b>%s</b></color>',$tid);
}
?>
<tr id="<?php echo $row['ticket_id']; ?>">
Expand Down

0 comments on commit 449cb44

Please sign in to comment.