From ebe58443b5dbfbf87ee75abb0c66ef4bd53cc60e Mon Sep 17 00:00:00 2001 From: AndreasK79 Date: Sat, 21 Mar 2020 08:19:42 +0100 Subject: [PATCH] Fixed using the wrong column in query to filter out SAT qsos. --- application/models/Logbook_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 6660bc5c..40b43918 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -199,7 +199,7 @@ class Logbook_model extends CI_Model { $this->db->where('station_id', $station_id); $this->db->where('COL_IOTA', $iota); if($band != "SAT") { - $this->db->where('COL_BAND !=', 'SAT'); + $this->db->where('COL_PROP_MODE !=', 'SAT'); $this->db->where('COL_BAND', $band); } else { $this->db->where('COL_PROP_MODE', "SAT");