order by description to make result at least reproduceable for dupes

This commit is contained in:
int2001
2025-03-28 06:41:09 +00:00
parent 5222ed0460
commit f5a10cc607

View File

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