From 8632b05ccaca1173c53145e14e32e9d29a40c017 Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Thu, 26 Oct 2023 15:17:17 +0200 Subject: [PATCH] controller --- application/controllers/Simplefle.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/application/controllers/Simplefle.php b/application/controllers/Simplefle.php index dff43e23a..c626c1f13 100644 --- a/application/controllers/Simplefle.php +++ b/application/controllers/Simplefle.php @@ -13,6 +13,8 @@ class SimpleFLE extends CI_Controller { $this->load->model('bands'); $data['station_profile'] = $this->stations->all_of_user(); // Used in the view for station location select + $data['bands'] = $this->bands->get_all_bands_for_user(); // Fetching Bands for FLE + $data['page_title'] = "Simple Fast Log Entry"; @@ -25,7 +27,7 @@ class SimpleFLE extends CI_Controller { ]; $this->load->view('interface_assets/header', $data); - $this->load->view('simplefle/index'); + $this->load->view('simplefle/index', $data); $this->load->view('interface_assets/footer', $footerData); }