Fixing bug with & in name of DXCC

An & in the name of a DXCC causes the webserver to ERROR 500.
这个提交包含在:
Kim - DG9VH 2019-06-12 20:01:59 +02:00 提交者 GitHub
父节点 1fa21fc245
当前提交 9153b18d06
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -36,7 +36,7 @@
if ($count == 0){
print("<td>&nbsp;</td>");
}else{
printf("<td><a href='dxcc_details?Country=\"%s\"&Band=\"%s\"'>%d</a></td>", $country, $band, $count);
printf("<td><a href='dxcc_details?Country=\"%s\"&Band=\"%s\"'>%d</a></td>", str_replace("&", "%26", $country), $band, $count);
}
}
print("</tr>");