Adjusted order by

This commit is contained in:
int2001 2023-12-08 11:47:59 +00:00
parent a2f6b9f09f
commit de75e9bd04
No known key found for this signature in database
GPG key ID: DFB1C13CD2DB037B

View file

@ -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);