From 118d652f8cd3e90faa8b2d7d7301acd79c3b78d7 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Sun, 3 Jul 2022 14:38:01 +0200 Subject: [PATCH] Bugfix for dxcc_lookup in logbook_model --- 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 0cd3d6c0..2453d7c9 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -2245,7 +2245,7 @@ class Logbook_model extends CI_Model { public function dxcc_lookup($call, $date){ - $dxcc_exceptions = $this->db->select('`entity`, `adif`, `cqz`') + $dxcc_exceptions = $this->db->select('*') ->where('call', $call) ->where('(start <= CURDATE()') ->or_where('start is null', NULL, false)