Merge pull request #881 from ryandzink/qso_distance_satellite_sort
Updates "distances worked" satellite dropdown to sort by bird name
这个提交包含在:
当前提交
5924434bf6
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用