Fix syntax

This commit is contained in:
phl0
2025-12-27 22:36:30 +01:00
parent ed3e57f577
commit af9740587e

View File

@@ -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);
}
}