Admin Main Page - Changing Priority to Category
Posted: Wed Dec 14, 2005 9:48 am
Script URL: http://support.673inc.com
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
I changed "priority" to "category", and the result is the value of the category (1, 2, 3, etc...), rather than the name/label. We wish to display the category name. Can you assist with how to resolve this?
Thank you.
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.