From cd344ff71fbe99bf9ccbe22f866150891b39f170 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Tue, 14 Oct 2025 15:57:54 +0100 Subject: [PATCH] Update eQSL authentication comment in Eqsl controller Clarified the comment regarding eQSL authentication to indicate that the user's actual eQSL credentials are used, and that the station callsign is managed in the ADIF data via eqslqthnickname. Removed outdated logic related to username handling for linked accounts. --- application/controllers/Eqsl.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 91dd36c55..e30dcf228 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -168,10 +168,8 @@ class eqsl extends CI_Controller foreach ($qslsnotsent->result_array() as $qsl) { $rows .= ""; - // eQSL username changes for linked account. - // i.e. when operating /P it must be callsign/p - // the password, however, is always the same as the main account - $data['user_eqsl_name'] = $qsl['station_callsign']; + // Note: eQSL authentication uses the user's actual eQSL credentials + // The station callsign is handled in the ADIF data via eqslqthnickname $adif = $this->generateAdif($qsl, $data); $status = $this->uploadQso($adif, $qsl);