From a75ad3dd17fc23a0c67f252001a366d8d33a7cf6 Mon Sep 17 00:00:00 2001 From: "Joerg (DJ7NT)" Date: Mon, 23 Feb 2026 06:55:19 +0100 Subject: [PATCH] Fix condition check for user_qso_show_map input Typo. sri --- application/controllers/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/User.php b/application/controllers/User.php index 047335bff..d166dd10a 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -824,7 +824,7 @@ class User extends CI_Controller { } } - if ($this->input->post('user_qso_show_map') !== false) { + if ($this->input->post('user_qso_show_map')) { $data['user_qso_show_map'] = $this->input->post('user_qso_show_map', true); } else { $qkey_opt = $this->user_options_model->get_options('qso_tab', array('option_name' => 'map', 'option_key' => 'show'), $this->uri->segment(3))->result();