[Dashboard] Fixes QSOs being out of order

这个提交包含在:
Peter Goodhall 2023-01-27 13:14:23 +00:00
父节点 84e689be0f
当前提交 348342d752

查看文件

@ -1184,7 +1184,8 @@ class Logbook_model extends CI_Model {
limit " . $num . limit " . $num .
") hrd ") hrd
JOIN station_profile ON station_profile.station_id = hrd.station_id JOIN station_profile ON station_profile.station_id = hrd.station_id
LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif"; LEFT JOIN dxcc_entities ON hrd.col_dxcc = dxcc_entities.adif
order by col_time_on desc, col_primary_key desc";
$query = $this->db->query($sql); $query = $this->db->query($sql);