From 23f1017433eaa7dddffb9822c69253bc7b96ac98 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Thu, 17 Jul 2025 16:50:39 +0100 Subject: [PATCH] Fix LOTW upload response string match Removed extra space in the LOTW upload response string to correctly detect successful uploads. --- 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 d45bb891..4b9c0e17 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -320,7 +320,7 @@ class Lotw extends CI_Controller { echo $station_profile->station_callsign." (".$station_profile->station_profile_name.") Upload Failed"."
"; } - $pos = strpos($result, ""); + $pos = strpos($result, ""); if ($pos === false) { // Upload of TQ8 Failed for unknown reason