From c55c3bb5947cdb30cc81d7b33fd0fce17c3e7f6f Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Sun, 12 Nov 2023 15:41:10 +0100 Subject: [PATCH] $data already in the header --- application/controllers/Debug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Debug.php b/application/controllers/Debug.php index 75bddc0f..5d8d2a9c 100644 --- a/application/controllers/Debug.php +++ b/application/controllers/Debug.php @@ -33,7 +33,7 @@ class Debug extends CI_Controller { $data['page_title'] = "Debug"; $this->load->view('interface_assets/header', $data); - $this->load->view('debug/main', $data); + $this->load->view('debug/main'); $this->load->view('interface_assets/footer'); }