Merge pull request #462 from tanilolli/master

Removed 15 QSO limit for Export All Satellite QSOS Confirmed on LoTW
这个提交包含在:
Peter Goodhall 2020-04-13 21:55:51 +01:00 提交者 GitHub
当前提交 38d44f3eb8
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -63,7 +63,6 @@ class adif_data extends CI_Model {
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id'); $this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->limit(15);
return $this->db->get(); return $this->db->get();
} }