Fix Redirect Link when scheduling tickets that conflict with other scheduled tickets

This commit is contained in:
johnnyq 2025-02-24 12:52:35 -05:00
parent 02c1446cb8
commit a08393b4d4
1 changed files with 1 additions and 1 deletions

View File

@ -2430,7 +2430,7 @@ if (isset($_POST['edit_ticket_schedule'])) {
} else {
$_SESSION['alert_type'] = "error";
$_SESSION['alert_message'] = "Ticket scheduled for $email_datetime. Yet there are conflicting tickets scheduled for the same time: <br>" . implode(", <br>", $conflicting_tickets);
header("Location: calendar_events.php");
header("Location: calendar.php");
}
}