From 31748e1fdeb0650e443ba8bae39ced353df93040 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Sat, 29 Jun 2019 23:19:56 +0100 Subject: [PATCH] Added the ability to search vucc fields --- application/controllers/Logbook.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index b7073256..a5aee362 100755 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -297,6 +297,7 @@ class Logbook extends CI_Controller { $this->db->like('COL_CALL', $id); $this->db->or_like('COL_GRIDSQUARE', $id); + $this->db->or_like('COL_VUCC_GRIDS', $id); $this->db->order_by("COL_TIME_ON", "desc"); $query = $this->db->get($this->config->item('table_name'));