Wizard,
You can set it to assign to a specific staff_id by editing the following:
include/class.ticket.php
Find the section that starts with the comment...
//We are ready son...hold on to the rails.
Under that comment out the original staff_id line and replace it with something like the following:
// ',staff_id='.db_input($staffId).
',staff_id='.db_input(2).
Where 2 is your actual staff id (maybe just 1 if you are the only staff member)
I don't have this anywhere in my include/class.ticket
This is what it looks like.
//We are ready son...hold on to the rails.
$extId=Ticket:();
$sql= 'INSERT INTO '.TICKET_TABLE.' SET created=NOW() '.
',ticketID='.db_input($extId).
',dept_id='.db_input($deptId).
',topic_id='.db_input($topicId).
',priority_id='.db_input($priorityId).
',email='.db_input($var).
',name='.db_input(Format:($var)).
',subject='.db_input(Format:($var)).
',helptopic='.db_input(Format:($topicDesc)).
',phone="'.db_input($var,false).'"'.
',phone_ext='.db_input($var?$var:'').
',ip_address='.db_input($ipaddress).
',source='.db_input($source);