From 66b4b65e35a4c85005d3acbefacaf748b3e0d10b Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 28 Sep 2023 14:51:03 +0200 Subject: [PATCH] Fix typo --- application/controllers/Options.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Options.php b/application/controllers/Options.php index 6ab72ab9..f22eee3e 100644 --- a/application/controllers/Options.php +++ b/application/controllers/Options.php @@ -111,7 +111,7 @@ class Options extends CI_Controller { $dashboard_map_update_status = $this->optionslib->update('dashboard_map', $this->input->post('dashboardMap'), 'yes'); // If dashboard map update is complete set a flashsession with a success note - if($ldashboard_map_update_status == TRUE) { + if($dashboard_map_update_status == TRUE) { $this->session->set_flashdata('success', $this->lang->line('options_dashboard_map_changed_to').$this->input->post('dashboardMap')); }