[QSO Window] Country names not full uppercase

这个提交包含在:
Peter Goodhall 2020-10-18 15:40:26 +01:00
父节点 2862b7851a
当前提交 5f331b651f

查看文件

@ -224,7 +224,7 @@
<?php if($row->station_country) { ?>
<tr>
<td>Station Country:</td>
<td><?php echo $row->station_country; ?></td>
<td><?php echo ucwords(strtolower(($row->station_country))); ?></td>
</tr>
<?php } ?>