From 903c46ca767942170d7b806944bb1c3392e6ec3b Mon Sep 17 00:00:00 2001 From: phl0 Date: Wed, 16 Mar 2022 18:16:24 +0100 Subject: [PATCH] Fix spelling of DARC ;-) --- application/models/Logbook_model.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 1aa0a144..bac8f461 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -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'), );