In include/staff/newticket.inc.php ~ line 4 AFTER
$info=($_POST && $errors)?Format:($_POST)(); //on error...use the post data
ADD
if(!$info) $info = $thisuser->getEmail();
if(!$info) $info = $thisuser->getFirstName()." ".$thisuser->getLastName();
if(!$info) $info = $thisuser->getDeptId();
if(!$info) {
$q = "SELECT phone FROM ".STAFF_TABLE." WHERE staff_id=".$thisuser->getId();
$query = mysql_query($q);
$data = mysql_fetch_assoc($query);
$info = $data;
}
That should fill in the data for name, email, phone, and select the proper dept.