Merge pull request #881 from ryandzink/qso_distance_satellite_sort

Updates "distances worked" satellite dropdown to sort by bird name
这个提交包含在:
Peter Goodhall 2021-02-09 13:57:24 +00:00 提交者 GitHub
当前提交 5924434bf6
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -36,7 +36,7 @@ class Distances_model extends CI_Model
$station_id = $CI->Stations->find_active();
// get all worked sats from database
$sql = "SELECT distinct col_sat_name FROM ".$this->config->item('table_name')." WHERE station_id = ".$station_id . " and coalesce(col_sat_name, '') <> ''";
$sql = "SELECT distinct col_sat_name FROM ".$this->config->item('table_name')." WHERE station_id = ".$station_id . " and coalesce(col_sat_name, '') <> '' ORDER BY col_sat_name";
$data = $this->db->query($sql);