From be70b37f1ebaedcca2b7b0434a0f1230d4167a4e Mon Sep 17 00:00:00 2001 From: Andreas <6977712+AndreasK79@users.noreply.github.com> Date: Mon, 8 May 2023 07:59:51 +0200 Subject: [PATCH] [eQSL] Fix result table after upload --- application/controllers/Eqsl.php | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index 96dda6e02..2268d5535 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -117,14 +117,14 @@ class eqsl extends CI_Controller { { $this->session->set_flashdata('warning', 'You have not defined your eQSL.cc credentials!'); redirect('eqsl/import'); } - + + $rows = ''; // Grab the list of QSOs to send information about // perform an HTTP get on each one, and grab the status back $qslsnotsent = $this->eqslmethods_model->eqsl_not_yet_sent(); - $rows = ""; 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 @@ -132,7 +132,6 @@ class eqsl extends CI_Controller { $adif = $this->generateAdif($qsl, $data); $status = $this->uploadQso($adif, $qsl); - $timestamp = strtotime($qsl['COL_TIME_ON']); $rows .= "".date($custom_date_format, $timestamp)."";