当前提交
9882545d7c
共有 1 个文件被更改,包括 5 次插入 和 5 次删除
|
|
@ -941,11 +941,11 @@ class Logbook_model extends CI_Model {
|
|||
$srx_string = null;
|
||||
}
|
||||
|
||||
if (stristr($this->input->post('usa_county') ?? '', ',')) {
|
||||
$uscounty = $this->input->post('usa_county');
|
||||
} else {
|
||||
$uscounty = $this->input->post('usa_state') .",".$this->input->post('usa_county');
|
||||
}
|
||||
if ($this->input->post('usa_county') && $this->input->post('usa_state')) {
|
||||
$uscounty = trim($this->input->post('usa_state') . "," . $this->input->post('usa_county'));
|
||||
} else {
|
||||
$uscounty = null;
|
||||
}
|
||||
|
||||
if ($this->input->post('qsl_sent')) {
|
||||
$qsl_sent = $this->input->post('qsl_sent');
|
||||
|
|
|
|||
正在加载…
在新工单中引用