From 9d76681c05511e91006995f8f69ed42bd1c40318 Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 11 Apr 2023 22:58:50 +0200 Subject: [PATCH] Correct error message. Empty file is not necessarily a failed login to LotW ... --- 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 5384f1e0..97403b15 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -359,7 +359,6 @@ class Lotw extends CI_Controller { | Download QSO Matches from LoTW */ echo "

"; - echo "LoTW Matches
"; echo $this->lotw_download(); } @@ -580,6 +579,7 @@ class Lotw extends CI_Controller { unlink($filepath); if(isset($data['lotw_table_headers'])) { + echo "LoTW Matches
"; if($display_view == TRUE) { $data['page_title'] = "LoTW ADIF Information"; $this->load->view('interface_assets/header', $data); @@ -589,7 +589,7 @@ class Lotw extends CI_Controller { return $tableheaders.$table; } } else { - echo "LoTW Downloading failed either due to it being down or incorrect logins."; + echo "Downloaded LotW report contains no matches."; } }