get_contacts_adif: Order only by PK / tnx DB4SCW

This commit is contained in:
int2001
2025-12-05 08:06:05 +00:00
parent 5e02b514ae
commit 5e1a213726

View File

@@ -267,7 +267,6 @@ class adif_data extends CI_Model {
// Add chunking
$this->db->limit($chunk_size, $offset);
$this->db->order_by($this->config->item('table_name').".COL_TIME_ON", "ASC");
$this->db->order_by("COL_PRIMARY_KEY", "ASC");
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left outer');