From 97188ea76a821e67f19eeb04617ada7dc29d457d Mon Sep 17 00:00:00 2001 From: int2001 Date: Wed, 12 Feb 2025 16:29:45 +0000 Subject: [PATCH] Fix typo at comments --- application/controllers/Lotw.php | 2 +- application/controllers/Qrz.php | 2 +- application/libraries/EqslImporter.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index adf939b70..73c5e5214 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -527,7 +527,7 @@ class Lotw extends CI_Controller { $record['qsl_rcvd'] = $config['lotw_rcvd_mark']; } - // Prop-Mode not given? Create array-key andfill with null + // Prop-Mode not given? Create array-key and fill with null if (!(array_key_exists('prop_mode', $record))) { $record['prop_mode']=null; } diff --git a/application/controllers/Qrz.php b/application/controllers/Qrz.php index 72510d171..8c82a0e73 100644 --- a/application/controllers/Qrz.php +++ b/application/controllers/Qrz.php @@ -450,7 +450,7 @@ class Qrz extends CI_Controller { $record['qsl_rcvd'] = $config['qrz_rcvd_mark']; } - // Prop-Mode not given? Create array-key andfill with null + // Prop-Mode not given? Create array-key and fill with null if (!(array_key_exists('prop_mode', $record))) { $record['prop_mode']=null; } diff --git a/application/libraries/EqslImporter.php b/application/libraries/EqslImporter.php index 50af27feb..3aa21d87e 100644 --- a/application/libraries/EqslImporter.php +++ b/application/libraries/EqslImporter.php @@ -163,7 +163,7 @@ class EqslImporter $record['qsl_sent'] = $config['eqsl_rcvd_mark']; } - // Prop-Mode not given? Create array-key andfill with null + // Prop-Mode not given? Create array-key and fill with null if (!(array_key_exists('prop_mode', $record))) { $record['prop_mode']=null; }