Prevent Ø in first login wizard

This commit is contained in:
phl0
2025-11-14 17:36:40 +01:00
parent 27c1fd859b
commit cfe7b5c004

View File

@@ -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),