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