Sort QSL images by last added to be on top

这个提交包含在:
phl0 2022-05-06 08:02:16 +02:00
父节点 98dd08a6f8
当前提交 4cb0a9a3e9
找不到此签名对应的密钥
GPG 密钥 ID: 48EA1E640798CA9A

查看文件

@ -9,6 +9,7 @@ class Qsl_model extends CI_Model {
$this->db->from($this->config->item('table_name'));
$this->db->join('qsl_images', 'qsl_images.qsoid = ' . $this->config->item('table_name') . '.col_primary_key');
$this->db->where_in('station_id', $logbooks_locations_array);
$this->db->order_by("id", "desc");
return $this->db->get();
}