Ticket: Dont display Updated at if null, Move Subject from top ticket bar to header in ticket details, add additional comments about the client_permission_overide

This commit is contained in:
johnnyq
2026-02-14 15:48:40 -05:00
parent 2349ef33d1
commit f9d0a8bf43
4 changed files with 13 additions and 13 deletions

View File

@@ -2,9 +2,9 @@
require_once '../../../includes/modal_header.php';
// Ticket client access overide
// Ticket client access overide - This is the only way to show tickets without a client to agents with restricted client access
$access_permission_query_overide = '';
if (!empty($client_access_string)) {
if ($client_access_string) {
$access_permission_query_overide = "AND ticket_client_id IN (0,$client_access_string)";
}