From de75e9bd0486a6cbf3c2fbdd3dfd5e7cec61dee3 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 8 Dec 2023 11:47:59 +0000 Subject: [PATCH] Adjusted order by --- application/models/Logbook_model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 191011dc..7dcfa7bf 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -1755,7 +1755,7 @@ class Logbook_model extends CI_Model { */ function get_qrz_apikeys() { $sql = 'select distinct qrzapikey, user_id from station_profile - where coalesce(qrzapikey, "") <> "" order by qrzapikey, station_callsign'; + where coalesce(qrzapikey, "") <> "" order by qrzapikey'; $query = $this->db->query($sql);