This commit is contained in:
Marcus Hill
2023-05-14 19:48:29 +01:00
parent 994d2fa5e4
commit 40a8c6d723
-9
View File
@@ -118,14 +118,6 @@ if (isset($_GET['ticket_id'])) {
$location_zip = nullable_htmlentities($row['location_zip']);
$location_phone = formatPhoneNumber($row['location_phone']);
// REMOVING - doesn't work properly now that a ticket might be created by an agent or client
// Moving to ticket_source in future
//Ticket Created By
//$ticket_created_by = intval($row['ticket_created_by']);
//$ticket_created_by_sql = mysqli_query($mysqli, "SELECT user_name FROM users WHERE user_id = $ticket_created_by");
//$row = mysqli_fetch_array($ticket_created_by_sql);
//$ticket_created_by_display = nullable_htmlentities($row['user_name']);
if ($contact_id) {
//Get Contact Ticket Stats
$ticket_related_open = mysqli_query($mysqli, "SELECT COUNT(ticket_id) AS ticket_related_open FROM tickets WHERE ticket_status != 'Closed' AND ticket_contact_id = $contact_id ");
@@ -560,7 +552,6 @@ if (isset($_GET['ticket_id'])) {
<div class="ml-1"><i class="fa fa-fw fa-thermometer-half text-secondary mr-2 mb-2"></i><?php echo $ticket_priority_display; ?></div>
<div class="ml-1"><i class="fa fa-fw fa-calendar text-secondary mr-2 mb-2"></i>Created: <?php echo $ticket_created_at; ?></div>
<div class="ml-1"><i class="fa fa-fw fa-history text-secondary mr-2 mb-2"></i>Updated: <strong><?php echo $ticket_updated_at; ?></strong></div>
<!--<div class="ml-1"><i class="fa fa-fw fa-user text-secondary mr-2 mb-2"></i>Created by: <?php // echo $ticket_created_by_display; ?></div>-->
<?php
if ($ticket_status == "Closed") {
$sql_closed_by = mysqli_query($mysqli, "SELECT * FROM tickets, users WHERE ticket_closed_by = user_id");