From 63c7252f82a555bbe69e0256187d539d25377fad Mon Sep 17 00:00:00 2001 From: phl0 Date: Tue, 5 Mar 2024 17:33:51 +0100 Subject: [PATCH] Use APP field from LoTW to set QSLRDATE --- 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 ffdea9090..21651e312 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -500,7 +500,7 @@ class Lotw extends CI_Controller { $time_on = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_on'])); - $qsl_date = date('Y-m-d', strtotime($record['qslrdate'])) ." ".date('H:i', strtotime($record['qslrdate'])); + $qsl_date = date('Y-m-d H:i', strtotime($record['app_lotw_rxqsl'])); if (isset($record['time_off'])) { $time_off = date('Y-m-d', strtotime($record['qso_date'])) ." ".date('H:i', strtotime($record['time_off']));