[Search] Fixes search when no dxcc is set on qso
这个提交包含在:
父节点
c368dca536
当前提交
10d7739ea2
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -772,7 +772,7 @@ class Logbook extends CI_Controller {
|
|||
function querydb($id) {
|
||||
$this->db->from($this->config->item('table_name'));
|
||||
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
|
||||
$this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC');
|
||||
$this->db->join('dxcc_entities', 'dxcc_entities.adif = '.$this->config->item('table_name').'.COL_DXCC', 'left outer');
|
||||
$this->db->join('lotw_users', 'lotw_users.callsign = '.$this->config->item('table_name').'.col_call', 'left outer');
|
||||
$this->db->group_start();
|
||||
$this->db->like(''.$this->config->item('table_name').'.COL_CALL', $id);
|
||||
|
|
|
|||
正在加载…
在新工单中引用