Add Ticket Page error
Posted: Sat Jan 20, 2007 4:53 am
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..
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.
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']);
}