Redirect user to tickets main page post deletion, rather than to a random ticket.

This commit is contained in:
Marcus Hill 2022-01-12 15:37:33 +00:00
parent e5f2740786
commit e45202d133
1 changed files with 1 additions and 1 deletions

View File

@ -5080,7 +5080,7 @@ if(isset($_GET['delete_ticket'])){
$_SESSION['alert_message'] = "Ticket deleted";
header("Location: " . $_SERVER["HTTP_REFERER"]);
header("Location: tickets.php");
}