From 09034c5cc03ca43cb86e7e68f1aba16b71e8a0ce Mon Sep 17 00:00:00 2001 From: Andreas Kristiansen <6977712+AndreasK79@users.noreply.github.com> Date: Sun, 28 Apr 2024 17:18:27 +0200 Subject: [PATCH] Remove link on itu zone --- src/QSLManager/QSO.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index 439214b70..2d7d21d86 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -200,7 +200,7 @@ class QSO $this->eqsl = $this->getEqslString($data, $custom_date_format); $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->dxcc = (($data['name'] ?? null) === null) ? '- NONE -' : ''.ucwords(strtolower($data['name']), "- (/").''; $this->iota = ($data['COL_IOTA'] === null) ? '' : $this->getIotaLink($data['COL_IOTA']);