Showing the client who the ticket is assigned to
You lucky one! "$ticket->getName" is of course wrong (just look into include/client/viewticket.inc.php; it's apparent). Anyway, here's how it should work for you, too:
In include/client/viewticket.inc.php add at the start of the file (e.g. before $dept = $ticket->getDept();) the line
$staff = $ticket->getStaff();
Then you can use the expression $staff->getName() to get the person the ticket is assigned to (if I am not mistaken:) But this expression throws an error when nobody is assigned, so you might want to use something like
$ticket->isAssigned()?Format:($staff->getName()):''
Personally, I changed the table from "Department" to "Assigned To:", and I include the Dept. in brackets. So, instead of
<th>Department:</th>
<td><?=Format:($dept->getName())?></td>
I use
<th>Assigned To:</th>
<td><?=$ticket->isAssigned()?Format:($staff->getName()):''?>
(<?=Format:($dept->getName())?>)</td>
Comes without warranty. Use at your own risk. Don't blame me when your cat's on fire...