From cfe7b5c00401de7602f610ac1bb885e900dbd76c Mon Sep 17 00:00:00 2001 From: phl0 Date: Fri, 14 Nov 2025 17:36:40 +0100 Subject: [PATCH] =?UTF-8?q?Prevent=20=C3=98=20in=20first=20login=20wizard?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 1ac8f1851..b19270bdb 100644 --- a/application/controllers/User.php +++ b/application/controllers/User.php @@ -1297,7 +1297,7 @@ class User extends CI_Controller { $stationdata = [ 'user_id' => $this->session->userdata('user_id'), 'station_name' => $this->input->post('station_name', true), - 'station_callsign' => trim($this->input->post('station_callsign', true)), + 'station_callsign' => str_replace('Ø', '0', trim($this->input->post('station_callsign', true))), 'station_dxcc' => $this->input->post('station_dxcc', true), 'station_cqz' => $this->input->post('station_cqz', true), 'station_ituz' => $this->input->post('station_ituz', true),