From 2786fb65ed7be8e9c1940dc99043f8235f8b956c Mon Sep 17 00:00:00 2001 From: wrongecho Date: Tue, 20 May 2025 11:39:09 +0100 Subject: [PATCH] Don't show archived ticket categories in the tickets.php filter options --- tickets.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tickets.php b/tickets.php index 80753034..c1c11c45 100644 --- a/tickets.php +++ b/tickets.php @@ -153,6 +153,7 @@ $sql_categories = mysqli_query( $mysqli, "SELECT * FROM categories WHERE category_type = 'Ticket' + AND category_archived_at IS NULL ORDER BY category_name" );