Add Ticket Page error

Helpdesk for my helpdesk software

Moderator: mkoch227

Post Reply
BlueStream
Posts: 2
Joined: Sat Jan 20, 2007 4:50 am

Add Ticket Page error

Post by BlueStream »

I was having problems submitting a new ticket... the page would always display the start page

in index.php on line 44

I edited it to become this and now it works..

Code: Select all

if ($_GET['a'] == 'add') {
	print_add_ticket();
} else if ($_GET['a'] == 'start' || $_GET['a'] == '') {
	print_start();
} else {
	hesk_error($hesklang['invalid_action']);
}
It would be great if this software can also list the number of open tickets, closed tickets, acknowledged tickets to the guest user. Not the details, just the count.
Post Reply