Fix county format in ADIF export
这个提交包含在:
父节点
f3fa563022
当前提交
39bb190fd2
共有 1 个文件被更改,包括 7 次插入 和 1 次删除
|
|
@ -198,7 +198,13 @@ class AdifHelper {
|
|||
|
||||
$line .= $this->getAdifFieldLine("MY_ITU_ZONE", $qso->station_itu);
|
||||
|
||||
$line .= $this->getAdifFieldLine("MY_CNTY", $qso->station_cnty);
|
||||
if($qso->state) {
|
||||
$county = trim($qso->state) . "," . trim($qso->station_cnty);
|
||||
} else {
|
||||
$county = trim($qso->station_cnty);
|
||||
}
|
||||
|
||||
$line .= $this->getAdifFieldLine("MY_CNTY", $county);
|
||||
|
||||
$line .= $this->getAdifFieldLine("MY_SIG", $qso->station_sig);
|
||||
|
||||
|
|
|
|||
正在加载…
在新工单中引用