Merge pull request #1363 from phl0/orderByTimeDesc
Order QSO in map details by time descending
这个提交包含在:
当前提交
e9e1346d26
共有 1 个文件被更改,包括 1 次插入 和 0 次删除
|
|
@ -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", "desc");
|
||||
|
||||
return $this->db->get($this->config->item('table_name'));
|
||||
}
|
||||
|
|
|
|||
正在加载…
在新工单中引用