Added missing file

pull/2598/head
Andreas 2023-10-19 21:35:08 +02:00
rodzic 10d6add8e1
commit 5d496da217
1 zmienionych plików z 5 dodań i 5 usunięć

Wyświetl plik

@ -753,22 +753,22 @@ class QSO
public function getDXCC(): string
{
return $this->dxcc;
return '<span id="dxcc">' . $this->dxcc . '</span>';
}
public function getCqzone(): string
{
return $this->cqzone;
return '<span id="cqzone">' . $this->cqzone . '</span>';
}
public function getState(): string
{
return $this->state;
return '<span id="state">' . $this->state . '</span>';
}
public function getIOTA(): string
{
return $this->iota;
return '<span id="iota">' . $this->iota . '</span>';
}
public function toArray(): array
@ -777,7 +777,7 @@ class QSO
'qsoID' => $this->qsoID,
'qsoDateTime' => $this->qsoDateTime,
'de' => $this->de,
'dx' => $this->dx,
'dx' => $this->getDx(),
'mode' => $this->getFormattedMode(),
'rstS' => $this->rstS,
'rstR' => $this->rstR,