Added possibility to mark QSOs as exported to LoTW.

This commit is contained in:
AndreasK79
2020-04-01 08:43:08 +02:00
parent 4f467e7256
commit e7d1b3bf27
5 changed files with 101 additions and 11 deletions

View File

@@ -97,7 +97,7 @@ class adif_data extends CI_Model {
'COL_LOTW_QSL_SENT' => 'Y'
);
$this->db->set('COL_LOTW_QSLSDATE', 'CURDATE()', FALSE);
$this->db->set('COL_LOTW_QSLSDATE', 'now()', FALSE);
$this->db->where('COL_PRIMARY_KEY', $id);
$this->db->update($this->config->item('table_name'), $data);
}