From fdb1462722b3efe5fe4bc352525e00affb861b1f Mon Sep 17 00:00:00 2001 From: HB9HIL Date: Fri, 17 Nov 2023 13:32:23 +0100 Subject: [PATCH] post correction --- application/controllers/Kmlexport.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/Kmlexport.php b/application/controllers/Kmlexport.php index f76327b5..bab07298 100644 --- a/application/controllers/Kmlexport.php +++ b/application/controllers/Kmlexport.php @@ -44,8 +44,8 @@ class Kmlexport extends CI_Controller { $dxcc = $this->input->post('dxcc_id'); $cqz = $this->input->post('cqz'); $propagation = $this->input->post('prop_mode'); - $fromdate = $this->input->post('fromdate'); - $todate = $this->input->post('todate'); + $fromdate = $this->input->post('from'); + $todate = $this->input->post('to'); // Get QSOs with Valid QRAs $qsos = $this->logbook_model->kml_get_all_qsos($band, $mode, $dxcc, $cqz, $propagation, $fromdate, $todate);