From df82d5ff26e04acf4a66a07182d92a879f64d7f7 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Mon, 28 Dec 2020 13:53:44 +0000 Subject: [PATCH] [QSO] Added RX Band to the stored session data, held till reset. --- application/controllers/Qso.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/controllers/Qso.php b/application/controllers/Qso.php index 7d24e842..70650677 100755 --- a/application/controllers/Qso.php +++ b/application/controllers/Qso.php @@ -62,6 +62,7 @@ class QSO extends CI_Controller { 'start_time' => $this->input->post('start_time'), 'time_stamp' => time(), 'band' => $this->input->post('band'), + 'band_rx' => $this->input->post('band_rx'), 'freq' => $this->input->post('freq_display'), 'freq_rx' => $this->input->post('freq_display_rx'), 'mode' => $this->input->post('mode'),