mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
Prevent Ø in first login wizard
This commit is contained in:
@@ -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),
|
||||
|
||||
Reference in New Issue
Block a user