From 26846d50934ad90bce3dca4749475c5cd2545ef5 Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 4 Nov 2024 20:45:06 +0100 Subject: [PATCH] [DXCC Award] Fix for confirmed DXCC numbers --- application/models/Dxcc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Dxcc.php b/application/models/Dxcc.php index ae5fb5098..27a9f110c 100644 --- a/application/models/Dxcc.php +++ b/application/models/Dxcc.php @@ -488,7 +488,7 @@ class DXCC extends CI_Model { $sql .= " LEFT JOIN satellite on thcv.COL_SAT_NAME = satellite.name"; $sql .= " join dxcc_entities d on thcv.col_dxcc = d.adif"; - $sql .= " where station_id in (" . $location_list . ")"; + $sql .= " where station_id in (" . $location_list . ") and col_dxcc > 0"; if ($band == 'SAT') { $sql .= " and thcv.col_prop_mode = ?";