From f5a10cc60771ce7d1be0f10d0a85e3fe9cc2149e Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 28 Mar 2025 06:41:09 +0000 Subject: [PATCH] order by description to make result at least reproduceable for dupes --- application/models/Pota.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/Pota.php b/application/models/Pota.php index 066663484..89718fb9b 100644 --- a/application/models/Pota.php +++ b/application/models/Pota.php @@ -26,6 +26,7 @@ class Pota extends CI_Model { function ham_of_note($callsign) { $this->db->where('callsign', $callsign); + $this->db->order_by('description asc'); $this->db->limit(1); return $this->db->get('hams_of_note');