From e6d3f638793aca7727d05ddea55b59a6ae525014 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 23 Aug 2024 07:28:38 +0000 Subject: [PATCH] Filter on JAPAN at WAJA-Details --- application/models/Timeline_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Timeline_model.php b/application/models/Timeline_model.php index b66014f12..823765ae5 100644 --- a/application/models/Timeline_model.php +++ b/application/models/Timeline_model.php @@ -307,7 +307,7 @@ class Timeline_model extends CI_Model { case 'iota': $this->db->where('COL_IOTA', $querystring); break; case 'waz': $this->db->where('COL_CQZ', $querystring); break; case 'vucc': $this->db->group_start(); $this->db->like('COL_GRIDSQUARE', $querystring); $this->db->or_like('COL_VUCC_GRIDS',$querystring); $this->db->group_end();break; - case 'waja': $this->db->where('COL_STATE', $querystring); break; + case 'waja': $this->db->where('COL_STATE', $querystring); $this->db->where('COL_DXCC','339'); break; } $this->db->order_by('COL_TIME_ON', 'DESC');