Ticketing updates

- Allow changing ticket status without adding a reply (just leave the response blank)
- Bugfix: Contact change email didn't include URL key
- Make it clearer when nobody is assigned to a ticket
This commit is contained in:
Marcus Hill
2024-11-02 10:22:31 +00:00
parent eb70aba430
commit 13f89d2118
2 changed files with 100 additions and 87 deletions

View File

@@ -3,7 +3,7 @@
// If client_id is in URI then show client Side Bar and client header
if (isset($_GET['client_id'])) {
require_once "inc_all_client.php";
} else {
} else {
require_once "inc_all.php";
}
@@ -876,6 +876,14 @@ if (isset($_GET['ticket_id'])) {
<?php } ?>
</div>
<?php } else { ?>
<div class="card card-body mb-3">
<h5 class="text-secondary">Contact</h5>
<div>
<i class="fa fa-fw fa-user text-secondary mr-2"></i><a href="#" data-toggle="modal" data-target="#editTicketContactModal<?php echo $ticket_id; ?>"><i>No One</i>
</a>
</div>
</div>
<?php } ?>
<!-- End contact card -->