Upload the view_unassigned.gif file into your scp/images directory. (For some reason it wouldn't let me upload it as a gif, so i had to add .txt to the end. Make sure you remove that) I wasn't able to get it the same as the other 2, but you can probably do better.
Find the following in include/staff/tickets.inc.php ~ line 41
case 'assigned':
$status='Open';
$staffId=$thisuser->getId();
break;
Add the following after it.
case 'unassigned':
$status='open';
$staffId=0;
break;
Find the following in include/staff/tickets.inc.php ~ line 82
//Staff's assigned tickets.
if($staffId && ($staffId==$thisuser->getId())) {
$results_type='Assigned Tickets';
$qwhere.=' AND ticket.staff_id='.db_input($staffId);
}
Add this after it.
//Unassigned
if($staffId==0 && $_GET=='unassigned') {
$results_type='Unassigned Tickets';
$qwhere.=' AND ticket.staff_id='.db_input($staffId);
}
Then find the following in include/staff/tickets.inc.php ~ line 316
<a href="tickets.php?status=open"> <img src="images/view_open.gif" alt="View Open" border=0></a>
<a href="tickets.php?status=closed"> <img src="images/view_closed.gif" alt="View Closed" border=0></a>
Add the following after it.
<a href="tickets.php?status=unassigned"> <img src="images/view_unassigned.gif" alt="View Unassigned" border=0></a>
[view_unassigned.gif.txt](https://forum.osticket.com/assets/files/migrated/8/5f4d7f13dd01e00fffcca9b2769269f.txt)