From b9cc46b5eeaac977b111ff149579ba6e9bcc7d3f Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 17 Jul 2025 17:00:30 +0200 Subject: [PATCH] Add newlines --- application/controllers/Lotw.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 9b24be9cf..e7dcc5be6 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -223,11 +223,11 @@ class Lotw extends CI_Controller { // Validty of QSO dates will be checked later $current_date = date('Y-m-d H:i:s'); if ($current_date <= $data['lotw_cert_info']->date_created) { - echo $data['lotw_cert_info']->callsign.": LoTW certificate not valid yet!"; + echo $data['lotw_cert_info']->callsign.": LoTW certificate not valid yet!
"; continue; } if ($current_date >= $data['lotw_cert_info']->date_expires) { - echo $data['lotw_cert_info']->callsign.": LoTW certificate expired!"; + echo $data['lotw_cert_info']->callsign.": LoTW certificate expired!
"; continue; } @@ -256,7 +256,7 @@ class Lotw extends CI_Controller { $adif_to_save = $this->load->view('lotw_views/adif_views/adif_export', $data, TRUE); if (strpos($adif_to_save, '')) { // Signing failed - echo "Signing failed."; + echo "Signing failed.
"; continue; }