From 61d7b49ced786ab5231bf3bc0d270e7adabafafd Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 28 Oct 2025 11:53:16 +0100 Subject: [PATCH] load page dataa on header --- application/controllers/Stationsetup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Stationsetup.php b/application/controllers/Stationsetup.php index 8325bb9b1..bbf6c769f 100644 --- a/application/controllers/Stationsetup.php +++ b/application/controllers/Stationsetup.php @@ -524,8 +524,8 @@ class Stationsetup extends CI_Controller { $this->load->model('stationsetup_model'); $data['locations'] = $this->stationsetup_model->list_all_locations()->result(); $data['page_title'] = __("Station location list"); - $this->load->view('interface_assets/header'); - $this->load->view('stationsetup/locationlist', $data); + $this->load->view('interface_assets/header', $data); + $this->load->view('stationsetup/locationlist'); $this->load->view('interface_assets/footer'); } }