SELECT Query SQL
Have you modified the SELECT Query SQL part?
Cliend-side:
\include\client\tickets.inc.php file, you should change this:
$qselect = 'SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email '.
',dept_name,status,source,priority_id ,ticket.created ';
become this:
$qselect = 'SELECT ticket.ticket_id,ticket.ticketID,ticket.dept_id,isanswered,ispublic,subject,name,email '.
',dept_name,status,source,priority_id ,ticket.created, ticket.issue ';
Staff-side:
\include\staff\tickets.inc.php file, you should change this:
$qselect = 'SELECT DISTINCT ticket.ticket_id,lock_id,ticketID,ticket.dept_id,ticket.staff_id,subject,name,email,dept_name '.
',ticket.status,ticket.source,isoverdue,isanswered,ticket.created,pri.* ,count(attach.attach_id) as attachments ';
become this:
$qselect = 'SELECT DISTINCT ticket.ticket_id,lock_id,ticketID,ticket.dept_id,ticket.staff_id,subject,name,email,dept_name '.
',ticket.status,ticket.source,isoverdue,isanswered,ticket.created,pri.* ,count(attach.attach_id) as attachments, ticket.issue ';
Hope it helps you.
Sincerely,
Masino Sinaga