From a08393b4d41f5a349f7a7e529f13ed651a33a146 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 24 Feb 2025 12:52:35 -0500 Subject: [PATCH] Fix Redirect Link when scheduling tickets that conflict with other scheduled tickets --- post/user/ticket.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/post/user/ticket.php b/post/user/ticket.php index 720d6c97..e9319a40 100644 --- a/post/user/ticket.php +++ b/post/user/ticket.php @@ -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:
" . implode(",
", $conflicting_tickets); - header("Location: calendar_events.php"); + header("Location: calendar.php"); } }