From c4df2d77d084de14a067b1926125afea90f3e274 Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 28 Jul 2023 09:31:39 +0000 Subject: [PATCH] flip PSE/TNX --- application/controllers/Labels.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 34ed4e58..d997e5c7 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -243,7 +243,7 @@ class Labels extends CI_Controller { $text .= "\n".'Satellite: '.$qso['sat'].' Mode: '.strtoupper($qso['sat_mode']); } $text .= "\nThanks for the QSO".($numofqsos>1 ? 's' : ''); - $text .= " | ".($qso['qsl_recvd'] <> 'Y' ? 'TNX' : 'PSE')." QSL"; + $text .= " | ".($qso['qsl_recvd'] == 'Y' ? 'TNX' : 'PSE')." QSL"; $pdf->Add_Label($text); }