mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
fix saving a station location if oqrs is disabled
This commit is contained in:
@@ -130,8 +130,8 @@ class Stations extends CI_Model {
|
||||
'clublogrealtime' => xss_clean($this->input->post('clublogrealtime', true)),
|
||||
'qrzapikey' => xss_clean($this->input->post('qrzapikey', true)),
|
||||
'qrzrealtime' => xss_clean($this->input->post('qrzrealtime', true)),
|
||||
'oqrs' => xss_clean($this->input->post('oqrs', true)),
|
||||
'oqrs_email' => xss_clean($this->input->post('oqrsemail', true)),
|
||||
'oqrs' => xss_clean($this->input->post('oqrs', true) ?? '0'),
|
||||
'oqrs_email' => xss_clean($this->input->post('oqrsemail', true) ?? '0'),
|
||||
'oqrs_text' => xss_clean($this->input->post('oqrstext', true)),
|
||||
'webadifapikey' => xss_clean($this->input->post('webadifapikey', true)),
|
||||
'webadifapiurl' => 'https://qo100dx.club/api',
|
||||
@@ -192,8 +192,8 @@ class Stations extends CI_Model {
|
||||
'clublogrealtime' => xss_clean($this->input->post('clublogrealtime', true)),
|
||||
'qrzapikey' => xss_clean($this->input->post('qrzapikey', true)),
|
||||
'qrzrealtime' => xss_clean($this->input->post('qrzrealtime', true)),
|
||||
'oqrs' => xss_clean($this->input->post('oqrs', true)),
|
||||
'oqrs_email' => xss_clean($this->input->post('oqrsemail', true)),
|
||||
'oqrs' => xss_clean($this->input->post('oqrs', true) ?? '0'),
|
||||
'oqrs_email' => xss_clean($this->input->post('oqrsemail', true) ?? '0'),
|
||||
'oqrs_text' => xss_clean($this->input->post('oqrstext', true)),
|
||||
'webadifapikey' => xss_clean($this->input->post('webadifapikey', true)),
|
||||
'webadifapiurl' => 'https://qo100dx.club/api',
|
||||
|
||||
Reference in New Issue
Block a user