diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 5bf9dd68..30633250 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -212,7 +212,7 @@ class Labels extends CI_Controller { $time = strtotime($qso['time']); $myFormatForView = date("Y-m-d H:i", $time); $rowData = [ - 'Date/UTC' => $myFormatForView, + 'Date/Time (UTC)' => $myFormatForView, 'Band' => $row['band'], 'Mode' => $row['mode'], 'RST' => $row['rst'], @@ -242,7 +242,7 @@ class Labels extends CI_Controller { $text .= "\n"; $text .= $builder->renderTable(); if($qso['sat'] != "") { - $text .= "\n".'Satellite: '.$qso['sat'].' Mode: '.strtoupper($qso['sat_mode']); + $text .= "\n".'Satellite: '.$qso['sat'].' Mode: '.strtoupper($qso['sat_mode'][0]).'/'.strtoupper($qso['sat_mode'][1]); } $text .= "\nThanks for the QSO".($numofqsos>1 ? 's' : ''); $text .= " | ".($qso['qsl_recvd'] == 'Y' ? 'TNX' : 'PSE')." QSL";