Added TQ8 signing of Station State
这个提交包含在:
父节点
65e701da8a
当前提交
a83a6fd3d0
共有 1 个文件被更改,包括 6 次插入 和 0 次删除
|
|
@ -26,6 +26,8 @@ $cert2 = str_replace("-----END CERTIFICATE-----", "", $cert1);
|
|||
|
||||
<?php if(isset($station_profile->station_iota)) { ?><IOTA:<?php echo strlen($station_profile->station_iota); ?>><?php echo $station_profile->station_iota; ?><?php } ?>
|
||||
|
||||
<?php if(isset($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 } ?>
|
||||
|
||||
<eor>
|
||||
|
||||
<?php foreach ($qsos->result() as $qso) { ?>
|
||||
|
|
@ -76,6 +78,10 @@ if($station_profile->station_itu) {
|
|||
$sign_string .= $station_profile->station_itu;
|
||||
}
|
||||
|
||||
if(isset($station_profile->state) && $station_profile->station_country = "UNITED STATES OF AMERICA") {
|
||||
$sign_string .= strtoupper($station_profile->state);
|
||||
}
|
||||
|
||||
if($qso->COL_BAND) {
|
||||
$sign_string .= strtoupper($qso->COL_BAND);
|
||||
}
|
||||
|
|
|
|||
正在加载…
在新工单中引用