From 0e46192055dee6981e979eeff5b142c24b01eb5b Mon Sep 17 00:00:00 2001 From: int2001 Date: Thu, 26 Oct 2023 11:29:58 +0000 Subject: [PATCH] Changed printed text to "via [via]" from " | send via [via]" --- application/controllers/Labels.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/controllers/Labels.php b/application/controllers/Labels.php index 76a514f3..cf0b966c 100644 --- a/application/controllers/Labels.php +++ b/application/controllers/Labels.php @@ -332,7 +332,7 @@ class Labels extends CI_Controller { $text = "Confirming QSO".($numofqsos>1 ? 's' : '')." with "; $text .= $current_callsign; if (($via) && ($qso['via'] ?? '' != '')) { - $text.=' | send via '.substr($qso['via'],0,8); + $text.=' via '.substr($qso['via'],0,8); } $text .= "\n"; $text .= $builder->renderTable();