Not really,
I mentioned the second nav bar, with direct links to the statusses.
like this:
Code: Select all
<a href="show_tickets.php?status=0" class="open"><?php echo $hesklang['open']; ?></a>
| <a href="show_tickets.php?status=1" class="waitingreply"><?php echo $hesklang['wait_reply']; ?></a>
| <a href="show_tickets.php?status=2" class="replied"><?php echo $hesklang['replied']; ?></a>
| <a href="show_tickets.php?status=6" class="replied"><?php echo $hesklang['all_not_closed']; ?></a>
| <a href="show_tickets.php?status=3" class="resolved"><?php echo $hesklang['closed']; ?></a>
| <a href="show_tickets.php?status=4"><?php echo $hesklang['any_status']; ?></a>
After posting I found out it was not much of a hassle, I just made a file show_admin_status_nav.inc.php, with the above code, and made a call to that file in admin_main.php.
So it works fine now for me.
[edit]
But maybe you have the code for me that shows the number of tickets in each status.
SELECT COUNT('id') FROM `hesk_tickets` WHERE STATUS = 0
[/edit]