From 0bd1b87060f04d6105077e602b57f3f71e22caa2 Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Thu, 18 Nov 2021 09:27:45 +0100 Subject: [PATCH] [DXAtlas Export] Limit station_locations to logged in user + only export for logged in user --- application/controllers/Dxatlas.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Dxatlas.php b/application/controllers/Dxatlas.php index cf290bd2..ad86ba4a 100644 --- a/application/controllers/Dxatlas.php +++ b/application/controllers/Dxatlas.php @@ -12,7 +12,7 @@ class Dxatlas extends CI_Controller { $this->load->model('stations'); $this->load->model('bands'); - $data['station_profile'] = $this->stations->all(); // Used in the view for station location select + $data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select $data['worked_bands'] = $this->bands->get_worked_bands(); // Used in the view for band select $data['modes'] = $this->modes->active(); // Used in the view for mode select $data['dxcc'] = $this->logbook_model->fetchDxcc(); // Used in the view for dxcc select