From ebd408b4252299798d41e8a37aee28c8784b7460 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Sat, 5 Sep 2020 21:42:55 +0100 Subject: [PATCH] Improved LOTW commenting on code --- application/controllers/Lotw.php | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 67d40b0f..9de8075e 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -190,16 +190,17 @@ class Lotw extends CI_Controller { if (!extension_loaded('openssl')) { echo "You must install php OpenSSL for LoTW functions to work"; } - + // Get Station Profile Data - $this->load->model('Stations'); + $this->load->model('Stations'); - $station_profiles = $this->Stations->all(); + $station_profiles = $this->Stations->all(); - // Array of QSO IDs being Uploaded + // Array of QSO IDs being Uploaded - $qso_id_array = array(); + $qso_id_array = array(); + // Build TQ8 Outputs if ($station_profiles->num_rows() >= 1) { foreach ($station_profiles->result() as $station_profile)