From 5d2ca03410e098167c1a081e358ab592e7f9b628 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 22 Dec 2022 21:13:02 +0100 Subject: [PATCH] [OQRS] SAT fix for displaying QSOs around time/date/mode for OQRS --- application/models/Oqrs_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Oqrs_model.php b/application/models/Oqrs_model.php index cb36e21d..9214a35e 100644 --- a/application/models/Oqrs_model.php +++ b/application/models/Oqrs_model.php @@ -202,7 +202,7 @@ class Oqrs_model extends CI_Model { function search_log_time_date($time, $date, $band, $mode) { $sql = 'select * from ' . $this->config->item('table_name') . ' thcv - join station_profile on thcv.station_id = station_profile.station_id where col_band = \'' . $band . '\' + join station_profile on thcv.station_id = station_profile.station_id where (col_band = \'' . $band . '\' or col_prop_mode = \'' . $band . '\') and date(col_time_on) = \'' . $date . '\' and (col_mode = \'' . $mode . '\' or col_submode = \'' . $mode . '\')