From 8f4eaba4e98d2e8524e4393ad53dc6a08ce1e98d Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Sat, 2 Aug 2025 11:53:23 +0100 Subject: [PATCH] Return 'SSB' for LSB and USB submodes in Lotw Updated the Lotw controller to return 'SSB' instead of 'LSB' or 'USB' when the submode is LSB or USB. This change ensures consistent handling of SSB submodes. --- application/controllers/Lotw.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 4d269e32..1c484f5d 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -1419,10 +1419,10 @@ class Lotw extends CI_Controller { } case "SSB": if ($submode == "LSB") { - return "LSB"; + return "SSB"; break; } elseif ($submode == "USB") { - return "USB"; + return "SSB"; break; } else { return "SSB";