From a77e73a56989b2618b5cce13a806186d79d6356d Mon Sep 17 00:00:00 2001 From: phl0 Date: Fri, 16 Jun 2023 10:14:03 +0200 Subject: [PATCH] Add space to QSO view at total distance --- application/views/view_log/qso.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index d4691e3b..0071fc06 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -135,13 +135,13 @@ switch ($measurement_base) { case 'M': - $distance .= "mi"; + $distance .= " mi"; break; case 'K': - $distance .= "km"; + $distance .= " km"; break; case 'N': - $distance .= "nmi"; + $distance .= " nmi"; break; } echo $distance;