From 30fd69d805e5645b0ba4ed3dd22d3656161c1c8b Mon Sep 17 00:00:00 2001 From: abarrau Date: Thu, 21 Dec 2023 08:37:29 +0100 Subject: [PATCH] fix for confirm QSL --- application/models/Logbook_model.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/application/models/Logbook_model.php b/application/models/Logbook_model.php index 3e3415b7..2e09c4ef 100755 --- a/application/models/Logbook_model.php +++ b/application/models/Logbook_model.php @@ -4517,9 +4517,10 @@ function lotw_last_qsl_date($user_id) { $this->load->library('qra'); $json["markers"] = array(); - $plot = array('lat'=>0, 'lng'=>0, 'html'=>'', 'label'=>'', 'confirmed'=>'N'); - + foreach ($qsos_result as $row) { + $plot = array('lat'=>0, 'lng'=>0, 'html'=>'', 'label'=>'', 'confirmed'=>'N'); + $plot['label'] = $row->COL_CALL; $plot['html'] = "Callsign: ".$row->COL_CALL."
Date/Time: ".$row->COL_TIME_ON."
";