mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
#592 Fixes LoTW error when doing QRZ Logbook Uploads in real time
This commit is contained in:
parent
ac74f6f34f
commit
e2fd678f58
1 changed files with 7 additions and 2 deletions
|
|
@ -465,8 +465,13 @@ class Logbook_model extends CI_Model {
|
|||
$adif .= '<cqz:' . strlen($data['COL_CQZ']) . '>' . $data['COL_CQZ'];
|
||||
//$adif .= '<ituz:' . strlen($data['COL_ITUZ']) . '>' . $data['COL_ITUZ']; -- not yet implemented
|
||||
|
||||
$adif .= '<lotw_qsl_sent:' . strlen($data['COL_LOTW_QSL_SENT']) . '>' . $data['COL_LOTW_QSL_SENT'];
|
||||
$adif .= '<lotw_qsl_rcvd:' . strlen($data['COL_LOTW_QSL_RCVD']) . '>' . $data['COL_LOTW_QSL_RCVD'];
|
||||
if($data['COL_LOTW_QSL_SENT']) {
|
||||
$adif .= '<lotw_qsl_sent:' . strlen($data['COL_LOTW_QSL_SENT']) . '>' . $data['COL_LOTW_QSL_SENT'];
|
||||
}
|
||||
|
||||
if($data['COL_LOTW_QSL_RCVD']) {
|
||||
$adif .= '<lotw_qsl_rcvd:' . strlen($data['COL_LOTW_QSL_RCVD']) . '>' . $data['COL_LOTW_QSL_RCVD'];
|
||||
}
|
||||
|
||||
if($data['COL_IOTA']) {
|
||||
$adif .= '<iota:' . strlen($data['COL_IOTA']) . '>' . $data['COL_IOTA'];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue