mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
Add US state and county fields for DXCC ID 110
Adds hardcoded US_STATE and US_COUNTY fields (HI and Hawaii) when the LoTW certificate DXCC ID is 110, ensuring proper ADIF export for Hawaii contacts.
This commit is contained in:
parent
30fe639c79
commit
a449c07098
1 changed files with 4 additions and 0 deletions
|
|
@ -31,8 +31,12 @@ $cert2 = str_replace("-----END CERTIFICATE-----", "", $cert1);
|
|||
|
||||
<?php if($station_profile->state != "" && $station_profile->station_country == "UNITED STATES OF AMERICA") { ?><US_STATE:<?php echo strlen($station_profile->state); ?>><?php echo $station_profile->state; ?><?php } ?>
|
||||
|
||||
<?php if($lotw_cert_info->cert_dxcc_id == "110") { ?><US_STATE:2>HI<?php } ?>
|
||||
|
||||
<?php if($station_profile->station_cnty != "" && $station_profile->station_country == "UNITED STATES OF AMERICA") { ?><US_COUNTY:<?php echo strlen($station_profile->station_cnty); ?>><?php echo $station_profile->station_cnty; ?><?php } ?>
|
||||
|
||||
<?php if($lotw_cert_info->cert_dxcc_id == "110") { ?><US_COUNTY:6>Hawaii<?php } ?>
|
||||
|
||||
<EOR>
|
||||
|
||||
<?php foreach ($qsos->result() as $qso) { ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue