[DXCC Award] Added ucwords to the DXCC Name so that it displays nicer

这个提交包含在:
Andreas 2022-09-20 12:18:40 +02:00
父节点 66a54078e6
当前提交 8527598c22

查看文件

@ -71,7 +71,7 @@ class DXCC extends CI_Model {
foreach ($bands as $band) { // Looping through bands and entities to generate the array needed for display
foreach ($dxccArray as $dxcc) {
$dxccMatrix[$dxcc->adif]['name'] = $dxcc->name;
$dxccMatrix[$dxcc->adif]['name'] = ucwords(strtolower($dxcc->name), "- (/");
$dxccMatrix[$dxcc->adif]['Dxccprefix'] = $dxcc->prefix;
if ($postdata['includedeleted'])
$dxccMatrix[$dxcc->adif]['Deleted'] = isset($dxcc->Enddate) ? "<div class='alert-danger'>Y</div>" : '';