Merge pull request #442 from AndreasK79/iota_wrong_column_fix
Fixed using the wrong column in query to filter out SAT qsos.
这个提交包含在:
当前提交
22aac29bf5
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -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");
|
||||
|
|
|
|||
正在加载…
在新工单中引用