diff --git a/include/class.ticket.php b/include/class.ticket.php index 25733c30121639ef44bba40a2298e2b3ddc18452..199e4356a02ec6a09623d0e224b4860e379f9e92 100644 --- a/include/class.ticket.php +++ b/include/class.ticket.php @@ -1833,7 +1833,7 @@ class Ticket { if(!$staff || (!is_object($staff) && !($staff=Staff::lookup($staff))) || !$staff->isStaff()) return null; - $where = array(); + $where = array('ticket.staff_id='.db_input($staff->getId())); $where2 = ''; if(($teams=$staff->getTeams())) @@ -1843,7 +1843,7 @@ class Ticket { $where[] = 'ticket.dept_id IN('.implode(',', db_input($depts)).') '; if(!$cfg || !($cfg->showAssignedTickets() || $staff->showAssignedTickets())) - $where2 =' AND (ticket.staff_id=0 OR ticket.staff_id='.db_input($staff->getId()).') '; + $where2 =' AND ticket.staff_id=0 '; $where = implode(' OR ', $where); if ($where) $where = 'AND ( '.$where.' ) ';