From b186c1595fbb57a01733dfc8325be1f6594e117d Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Fri, 27 Feb 2026 10:51:47 +0100 Subject: [PATCH] Fix continent filter --- application/models/Dxcc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index 4469f8b05..2c5668a5a 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -278,6 +278,7 @@ class DXCC extends CI_Model { MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog FROM " . $this->config->item('table_name') . " thcv + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif WHERE station_id IN (" . $location_list . ") AND thcv.col_dxcc > 0"; // Mode filter @@ -323,6 +324,7 @@ class DXCC extends CI_Model { MAX(case when thcv.COL_QRZCOM_QSO_DOWNLOAD_STATUS= 'Y' then 1 else 0 end) as qrz, MAX(case when thcv.COL_CLUBLOG_QSO_DOWNLOAD_STATUS = 'Y' then 1 else 0 end) as clublog FROM " . $this->config->item('table_name') . " thcv + join dxcc_entities on thcv.col_dxcc = dxcc_entities.adif LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name WHERE station_id IN (" . $location_list . ") AND thcv.col_dxcc > 0";