From f35ba3f1b362c5a208da4681cd91e8bebdb9aa37 Mon Sep 17 00:00:00 2001 From: int2001 Date: Thu, 1 Jan 2026 12:35:07 +0000 Subject: [PATCH] INNER JOIN fits here - tnx LA8AJA --- 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 fc5033bf0..18ed7c8b7 100644 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -1097,7 +1097,7 @@ class Logbook_model extends CI_Model { prof.clublogrealtime, auth.user_clublog_name as ucn, auth.user_clublog_password as ucp FROM station_profile prof - LEFT JOIN ' . $this->config->item('auth_table') . ' auth ON (auth.user_id = prof.user_id) + INNER JOIN ' . $this->config->item('auth_table') . ' auth ON (auth.user_id = prof.user_id) WHERE prof.station_id = ?'; $query = $this->db->query($sql, $station_id);