Fixing bug with & in name of DXCC
An & in the name of a DXCC causes the webserver to ERROR 500.
这个提交包含在:
父节点
1fa21fc245
当前提交
9153b18d06
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -36,7 +36,7 @@
|
|||
if ($count == 0){
|
||||
print("<td> </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>");
|
||||
|
|
|
|||
正在加载…
在新工单中引用