US County added to the signing if available

这个提交包含在:
Peter Goodhall 2020-09-02 13:57:52 +01:00
父节点 793ce241ad
当前提交 b128f50cb2

查看文件

@ -80,6 +80,10 @@ if($station_profile->station_itu) {
$sign_string .= $station_profile->station_itu;
}
if($station_profile->station_cnty != "" && $station_profile->station_country = "UNITED STATES OF AMERICA") {
$sign_string .= strtoupper($station_profile->station_cnty);
}
if($station_profile->state != "" && $station_profile->station_country = "UNITED STATES OF AMERICA") {
$sign_string .= strtoupper($station_profile->state);
}