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; }