almost there!
huy guys,
i'm almost there, with adding a status pending...
now i want in my viewticket.inc.php to have a checkbox that says "pending on reply".
goal is to have all tickets that have been reply'd to, to go pending.
<div style="margin-top: 3px;">
<label for="ticket_status"><b>Ticket Status:</b></label>
<?
$checked=isset($info)?'checked':''; //Staff must explicitly check the box to change status..
if($ticket->isOpen() OR $ticket->isPending()) {?>
<input type="checkbox" name="ticket_status" value="Close"> Close on Reply
<?}?>
<?
if($ticket->isOpen() OR $ticket->isClosed()) {?>
<input type="checkbox" name="ticket_status" value="Pending" checked> Pending on Reply
<?}?>
</div>
i now have this, but this doesn't work.
close and reopen do, but the "pending" doesn't.
can anybody help me with this?
thanks,
if i have it all sorted out i will post my actions to share!!