diff --git a/core/components/tickets/processors/mgr/comment/getlist.class.php b/core/components/tickets/processors/mgr/comment/getlist.class.php index bf7f98d..4919827 100644 --- a/core/components/tickets/processors/mgr/comment/getlist.class.php +++ b/core/components/tickets/processors/mgr/comment/getlist.class.php @@ -53,6 +53,10 @@ public function prepareQueryBeforeCount(xPDOQuery $c) $c->where(array( 'TicketComment.id:=' => $query, 'OR:TicketComment.parent:=' => $query, + 'OR:TicketComment.text:LIKE' => '%' . $query . '%', + 'OR:TicketComment.raw:LIKE' => '%' . $query . '%', + 'OR:TicketComment.name:LIKE' => '%' . $query . '%', + 'OR:TicketComment.email:LIKE' => '%' . $query . '%', )); } else {