[OQRS] SAT fix for displaying QSOs around time/date/mode for OQRS

这个提交包含在:
Andreas 2022-12-22 21:13:02 +01:00
父节点 723070cf30
当前提交 5d2ca03410

查看文件

@ -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 . '\')