From 8353830af13fd6bb4da3bb690524f6c75da2f870 Mon Sep 17 00:00:00 2001 From: Mary Strodl Date: Mon, 24 Aug 2026 18:51:27 -0400 Subject: [PATCH] search: fix sections which start at exactly 5 PM sections that start at 5 PM should count as at least one of afternoon or evening. --- api/search.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/search.php b/api/search.php index 4fd1c64..c65e79d 100644 --- a/api/search.php +++ b/api/search.php @@ -146,7 +146,7 @@ function assertNumeric($var, $name): void { $timequery[] = "(start >= 720 AND start < 1020)"; } if (in_array("even", $times)) { - $timequery[] = "(start > 1020)"; + $timequery[] = "(start >= 1020)"; } $timeConstraints[] = "(" . implode(" OR ", $timequery) . ")"; // Make it a single string (condition OR condition ...) }