From 0ff51dfd4dccaa52fed74446794b9dc674311feb Mon Sep 17 00:00:00 2001 From: Andreas Date: Sun, 25 Oct 2020 17:46:39 +0100 Subject: [PATCH] Added a line break here. Find it visually much more appealing in the table with one call on each line. --- application/models/Vucc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Vucc.php b/application/models/Vucc.php index 732bc4fe..ddbb40b5 100644 --- a/application/models/Vucc.php +++ b/application/models/Vucc.php @@ -294,7 +294,7 @@ class VUCC extends CI_Model $result = $this->logbook_model->vucc_qso_details($grid, $band); $callsignlist = ''; foreach($result->result() as $call) { - $callsignlist .= $call->COL_CALL . ' '; + $callsignlist .= $call->COL_CALL . '
'; } $vuccBand[$grid]['call'] = $callsignlist; }