Should be desc here instead of asc

这个提交包含在:
phl0 2022-01-14 11:59:04 +01:00
父节点 481deabbd4
当前提交 d59e247730
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -276,7 +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");
$this->db->order_by("COL_TIME_ON", "desc");
return $this->db->get($this->config->item('table_name'));
}