From f3b88bbba01207b296b5a6b7740b5c7a3be279c1 Mon Sep 17 00:00:00 2001 From: Karuru Date: Tue, 13 Aug 2024 22:51:55 +0800 Subject: [PATCH] fix visitor sat page grids not showing --- application/controllers/Visitor.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/controllers/Visitor.php b/application/controllers/Visitor.php index 36dd5eb29..5706e9920 100644 --- a/application/controllers/Visitor.php +++ b/application/controllers/Visitor.php @@ -224,7 +224,7 @@ class Visitor extends CI_Controller { // Get Confirmed LoTW & Paper Squares (non VUCC) - $query = $this->gridmap_model->get_band_confirmed('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query = $this->gridmap_model->get_band_confirmed('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query->num_rows() > 0) @@ -260,7 +260,7 @@ class Visitor extends CI_Controller { } // Get worked squares - $query = $this->gridmap_model->get_band('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query = $this->gridmap_model->get_band('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query->num_rows() > 0) { @@ -294,7 +294,7 @@ class Visitor extends CI_Controller { } } - $query_vucc = $this->gridmap_model->get_band_worked_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query_vucc = $this->gridmap_model->get_band_worked_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query_vucc->num_rows() > 0) { @@ -321,7 +321,7 @@ class Visitor extends CI_Controller { } // Confirmed Squares - $query_vucc = $this->gridmap_model->get_band_confirmed_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', $logbooks_locations_array); + $query_vucc = $this->gridmap_model->get_band_confirmed_vucc_squares('SAT', 'All', 'false', 'true', 'false', 'false', 'All', 'All', 'All', $logbooks_locations_array); if ($query && $query_vucc->num_rows() > 0) {