Remove link on itu zone

This commit is contained in:
Andreas Kristiansen
2024-04-28 17:18:27 +02:00
parent 66a3feca89
commit 09034c5cc0

View File

@@ -200,7 +200,7 @@ class QSO
$this->eqsl = $this->getEqslString($data, $custom_date_format); $this->eqsl = $this->getEqslString($data, $custom_date_format);
$this->cqzone = ($data['COL_CQZ'] === null) ? '' : $this->geCqLink($data['COL_CQZ']); $this->cqzone = ($data['COL_CQZ'] === null) ? '' : $this->geCqLink($data['COL_CQZ']);
$this->ituzone = ($data['COL_ITUZ'] === null) ? '' : $this->geCqLink($data['COL_ITUZ']); $this->ituzone = $data['COL_ITUZ'] ?? '';
$this->state = ($data['COL_STATE'] === null) ? '' :$data['COL_STATE']; $this->state = ($data['COL_STATE'] === null) ? '' :$data['COL_STATE'];
$this->dxcc = (($data['name'] ?? null) === null) ? '- NONE -' : '<a href="javascript:spawnLookupModal('.$data['COL_DXCC'].',\'dxcc\');">'.ucwords(strtolower($data['name']), "- (/").'</a>'; $this->dxcc = (($data['name'] ?? null) === null) ? '- NONE -' : '<a href="javascript:spawnLookupModal('.$data['COL_DXCC'].',\'dxcc\');">'.ucwords(strtolower($data['name']), "- (/").'</a>';
$this->iota = ($data['COL_IOTA'] === null) ? '' : $this->getIotaLink($data['COL_IOTA']); $this->iota = ($data['COL_IOTA'] === null) ? '' : $this->getIotaLink($data['COL_IOTA']);