If a client looks at the status of a ticket then he is logged in. I get no log-out link.
If somebody else want to make a ticket on the same computer he remebers the other client.
I think it has to do with this:
file header.inc.php
<?
if(is_object($thisclient) && $thisclient->isValid()) {?>
<li><a class="log_out" href="logout.php">Log Out</a></li>
<li><a class="my_tickets" href="view.php">My Tickets</a></li>
<?}else {?>
<li><a class="ticket_status" href="view.php">Ticket Status</a></li>
<?}?>
<li><a class="new_ticket" href="open.php">New Ticket</a></li>
<li><a class="home" href="index.php">Home</a></li>
Can anybody help me ?
regards
Ruud