Fixed using the wrong column in query to filter out SAT qsos.
这个提交包含在:
父节点
37f9439089
当前提交
ebe58443b5
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -199,7 +199,7 @@ class Logbook_model extends CI_Model {
|
||||||
$this->db->where('station_id', $station_id);
|
$this->db->where('station_id', $station_id);
|
||||||
$this->db->where('COL_IOTA', $iota);
|
$this->db->where('COL_IOTA', $iota);
|
||||||
if($band != "SAT") {
|
if($band != "SAT") {
|
||||||
$this->db->where('COL_BAND !=', 'SAT');
|
$this->db->where('COL_PROP_MODE !=', 'SAT');
|
||||||
$this->db->where('COL_BAND', $band);
|
$this->db->where('COL_BAND', $band);
|
||||||
} else {
|
} else {
|
||||||
$this->db->where('COL_PROP_MODE', "SAT");
|
$this->db->where('COL_PROP_MODE', "SAT");
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用