From af9740587e48da226d9710e9bc53fe4d8e0a12f3 Mon Sep 17 00:00:00 2001 From: phl0 Date: Sat, 27 Dec 2025 22:36:30 +0100 Subject: [PATCH] Fix syntax --- application/controllers/Adif.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index 6d5318545..9d321d60c 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -229,7 +229,8 @@ class adif extends CI_Controller { // Handle LoTW marking after export if ((clubaccess_check(9)) && ($this->input->post('markLotw') == 1) && !empty($qso_ids_for_lotw)) { foreach ($qso_ids_for_lotw as $qso_id) { - $this->Logbook_model->mark_lotw_sent($qso_id); + log_message('debug', 'TEST: '.$qso_id); + $this->logbook_model->mark_lotw_sent($qso_id); } } @@ -252,7 +253,7 @@ class adif extends CI_Controller { $this->load->view('adif/data/exportall', $data); foreach ($data['qsos']->result() as $qso) { - $this->Logbook_model->mark_lotw_sent($qso->COL_PRIMARY_KEY); + $this->logbook_model->mark_lotw_sent($qso->COL_PRIMARY_KEY); } }