Add sig and sig_info fields to model

这个提交包含在:
Daniel Clerc 2020-11-08 10:19:47 +01:00
父节点 844ded79d6
当前提交 54531b08c5

查看文件

@ -42,6 +42,8 @@ class Stations extends CI_Model {
'station_city' => xss_clean($this->input->post('city', true)), 'station_city' => xss_clean($this->input->post('city', true)),
'station_iota' => xss_clean(strtoupper($this->input->post('iota', true))), 'station_iota' => xss_clean(strtoupper($this->input->post('iota', true))),
'station_sota' => xss_clean(strtoupper($this->input->post('sota', true))), 'station_sota' => xss_clean(strtoupper($this->input->post('sota', 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($this->input->post('station_callsign', true)), 'station_callsign' => xss_clean($this->input->post('station_callsign', true)),
'station_dxcc' => xss_clean($this->input->post('dxcc', true)), 'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
'station_country' => xss_clean($this->input->post('station_country', true)), 'station_country' => xss_clean($this->input->post('station_country', true)),
@ -64,6 +66,8 @@ class Stations extends CI_Model {
'station_city' => xss_clean($this->input->post('city', true)), 'station_city' => xss_clean($this->input->post('city', true)),
'station_iota' => xss_clean($this->input->post('iota', true)), 'station_iota' => xss_clean($this->input->post('iota', true)),
'station_sota' => xss_clean($this->input->post('sota', true)), 'station_sota' => xss_clean($this->input->post('sota', true)),
'station_sig' => xss_clean($this->input->post('sig', true)),
'station_sig_info' => xss_clean($this->input->post('sig_info', true)),
'station_callsign' => xss_clean($this->input->post('station_callsign', true)), 'station_callsign' => xss_clean($this->input->post('station_callsign', true)),
'station_dxcc' => xss_clean($this->input->post('dxcc', true)), 'station_dxcc' => xss_clean($this->input->post('dxcc', true)),
'station_country' => xss_clean($this->input->post('station_country', true)), 'station_country' => xss_clean($this->input->post('station_country', true)),