Allow client to close ticket from portal

This commit is contained in:
Marcus Hill
2022-03-29 21:16:02 +01:00
parent bb1dfef2e4
commit 441591d39e
3 changed files with 7 additions and 27 deletions

View File

@@ -89,7 +89,7 @@ $total_tickets = $row['total_tickets'];
<?php
while($ticket = mysqli_fetch_array($contact_tickets)){
echo "<tr>";
echo "<td> <a href='ticket.php?id=$ticket[ticket_id]'> $ticket[ticket_number]</a></td>";
echo "<td> <a href='ticket.php?id=$ticket[ticket_id]'> $ticket[ticket_prefix]$ticket[ticket_number]</a></td>";
echo "<td> <a href='ticket.php?id=$ticket[ticket_id]'> $ticket[ticket_subject]</a></td>";
echo "<td>$ticket[ticket_status]</td>";
echo "</tr>";