Merge pull request #1419 from phl0/fixGridsquareMap

Also get station_gridsqare for gridsquare map
这个提交包含在:
Peter Goodhall 2022-03-02 16:16:38 +00:00 提交者 GitHub
当前提交 414d2e6460
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -257,6 +257,7 @@ class Logbook_model extends CI_Model {
$CI->load->model('logbooks_model');
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
switch ($type) {
case 'DXCC':
$this->db->where('COL_COUNTRY', $searchphrase);
@ -286,7 +287,7 @@ class Logbook_model extends CI_Model {
break;
}
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->where_in($this->config->item('table_name').'.station_id', $logbooks_locations_array);
if ($band != 'All') {
if($band != "SAT") {