From 08f8e28e10dc2398a2bc5b03ee3877a7592ac5b5 Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 23 Sep 2025 15:03:22 +0200 Subject: [PATCH] Show VUCC_GRIDS in case GRIDSQUARE is empty --- application/controllers/Lotw.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 774643827..0c87d82df 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -609,7 +609,7 @@ class Lotw extends CI_Controller { $table .= "".$record['qsl_rcvd'].""; $table .= "".$qsl_date.""; $table .= "".$state.""; - $table .= "".(($qsl_gridsquare != '' ? $qsl_gridsquare : ($record['gridsquare'] ?? '')) ?? $qsl_vucc_grids).""; + $table .= "".($qsl_gridsquare != '' ? $qsl_gridsquare : $qsl_vucc_grids).""; $table .= "".$iota.""; $table .= "QSO Record: ".$status[0].""; $table .= "LoTW Record: ".$lotw_status."";