Merge pull request #1432 from phl0/fixDARC

Fix spelling of DARC ;-)
这个提交包含在:
Peter Goodhall 2022-03-16 17:59:01 +00:00 提交者 GitHub
当前提交 5a25ac90cd
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -93,9 +93,9 @@ class Logbook_model extends CI_Model {
}
if($this->input->post('copyexchangetodok')) {
$dark_dok = $this->input->post('exch_recv');
$darc_dok = $this->input->post('exch_recv');
} else {
$dark_dok = $this->input->post('darc_dok');
$darc_dok = $this->input->post('darc_dok');
}
if ($this->input->post('qsl_sent')) {
@ -178,7 +178,7 @@ class Logbook_model extends CI_Model {
'COL_SOTA_REF' => trim($this->input->post('sota_ref')),
'COL_SIG' => trim($this->input->post('sig')),
'COL_SIG_INFO' => trim($this->input->post('sig_info')),
'COL_DARC_DOK' => trim($dark_dok),
'COL_DARC_DOK' => trim($darc_dok),
'COL_NOTES' => $this->input->post('notes'),
);