From addafc9b2d3c38e4e3aba97e68bc80b3eae7c01a Mon Sep 17 00:00:00 2001 From: HB9HIL <80885850+HB9HIL@users.noreply.github.com> Date: Thu, 15 Aug 2024 00:54:30 +0200 Subject: [PATCH] fix search_incorrect_cq_zones forgot to add the `All` case --- application/controllers/Logbook.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index c9c25ee83..304d3231d 100644 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -1049,7 +1049,7 @@ class Logbook extends CI_Controller { function search_incorrect_cq_zones($station_id) { $clean_station_id = $this->security->xss_clean($station_id); - if (!is_numeric($clean_station_id)) { + if (!is_numeric($clean_station_id) && $clean_station_id !== 'All') { show_404(); }