Fence for spaces at call

This commit is contained in:
int2001
2025-03-21 15:03:12 +00:00
parent 00e436157a
commit dfb8f80a98
3 changed files with 4 additions and 4 deletions

View File

@@ -134,7 +134,7 @@ class Stations extends CI_Model {
'station_pota' => xss_clean(strtoupper($this->input->post('pota', true))),
'station_sig' => xss_clean(strtoupper($this->input->post('sig', true))),
'station_sig_info' => xss_clean(strtoupper($this->input->post('sig_info', true))),
'station_callsign' => xss_clean(strtoupper($this->input->post('station_callsign', true))),
'station_callsign' => trim(xss_clean(strtoupper($this->input->post('station_callsign', true)))),
'station_power' => is_numeric(xss_clean($this->input->post('station_power', true))) ? xss_clean($this->input->post('station_power', true)) : NULL,
'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
'station_cnty' => $county,
@@ -196,7 +196,7 @@ class Stations extends CI_Model {
'station_pota' => xss_clean(strtoupper($this->input->post('pota', true))),
'station_sig' => xss_clean(strtoupper($this->input->post('sig', true))),
'station_sig_info' => xss_clean(strtoupper($this->input->post('sig_info', true))),
'station_callsign' => xss_clean(strtoupper($this->input->post('station_callsign', true))),
'station_callsign' => trim(xss_clean(strtoupper($this->input->post('station_callsign', true)))),
'station_power' => is_numeric(xss_clean($this->input->post('station_power', true))) ? xss_clean($this->input->post('station_power', true)) : NULL,
'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
'station_cnty' => $county,