Order QSO in map details by time descending

This commit is contained in:
phl0
2022-01-14 11:57:15 +01:00
parent d96c365ee1
commit 481deabbd4

View File

@@ -276,6 +276,7 @@ class Logbook_model extends CI_Model {
if ($mode != 'All') {
$this->db->where("(COL_MODE='" . $mode . "' OR COL_SUBMODE='" . $mode ."')");
}
$this->db->order_by("COL_TIME_ON", "asc");
return $this->db->get($this->config->item('table_name'));
}