Version of script: 0.93b
Version of PHP: 4
Hosting company: Personal
Have you searched THIS FORUM for your problem: Yes
(if not please do before posting)
If so, what terms did you try:
Category
Write your message below:
On the main admin page, I'm trying to get it to display the category of the ticket, rather than the priority. The following code is taken from print_tickets.inc.php
Code: Select all
<tr>
<td class="$color" align="center"><input type="checkbox" name="id[]" value="$ticket[id]"></td>
<td class="$color"><a href="admin_ticket.php?track=$ticket[trackid]&Refresh=$random">$ticket[trackid]</a></td>
<td class="$color" align="center">$ticket[dt]</td>
<td class="$color">$ticket[name]</td>
<td class="$color"><a href="admin_ticket.php?track=$ticket[trackid]&Refresh=$random">$ticket[subject]</a></td>
<td class="$color" align="center">$ticket[status]</td>
<td class="$color" align="center">$ticket[category]</td>
</tr>
Thank you.