Remove redundant function to mark LoTW sent

This commit is contained in:
phl0
2025-12-27 22:24:09 +01:00
parent d4c9270a88
commit 1066c6a1fa
2 changed files with 4 additions and 12 deletions

View File

@@ -298,16 +298,6 @@ class adif_data extends CI_Model {
return $this->db->get();
}
function mark_lotw_sent($id) {
$data = array(
'COL_LOTW_QSL_SENT' => 'Y'
);
$this->db->set('COL_LOTW_QSLSDATE', 'now()', FALSE);
$this->db->where('COL_PRIMARY_KEY', $id);
$this->db->update($this->config->item('table_name'), $data);
}
function sig_all($type) {
$CI =& get_instance();
$CI->load->model('logbooks_model');