From 7f208f455bfbd011b820180adbdabc3c8d3cb2e2 Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 23 May 2024 12:03:59 +0200 Subject: [PATCH] Show links for POTA references --- src/QSLManager/QSO.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/QSLManager/QSO.php b/src/QSLManager/QSO.php index f3b503a72..a68128ff8 100644 --- a/src/QSLManager/QSO.php +++ b/src/QSLManager/QSO.php @@ -818,7 +818,7 @@ class QSO 'name' => $this->getName(), 'dxcc' => $this->getDXCC(), 'state' => $this->getState(), - 'pota' => $this->dxPOTAReference, + 'pota' => $this->getFormattedPota(), 'operator' => $this->getOperator(), 'cqzone' => $this->getCqzone(), 'ituzone' => $this->getItuzone(), @@ -931,6 +931,10 @@ class QSO return ''. $this->dxWWFFReference . ''; } + private function getFormattedPota() { + return ''. $this->dxPOTAReference . ''; + } + private function getFormattedQSLSent(): string { $showVia = false;