From fd5a09d8ceb2df9a9bda99dea62d2314a7f27f0b Mon Sep 17 00:00:00 2001 From: phl0 Date: Thu, 4 May 2023 13:37:15 +0200 Subject: [PATCH] Tweet references also if present --- application/views/view_log/qso.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index 0c6e3ead..f607d740 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -372,16 +372,16 @@ $hashtags = "#hamr #cloudlog"; } if($row->COL_IOTA != null) { - $hashtags .= " #iota"; + $hashtags .= " #IOTA ".$row->COL_IOTA; } if($row->COL_SOTA_REF != null) { - $hashtags .= " #sota"; + $hashtags .= " #SOTA ".$row->COL_SOTA_EF; } if($row->COL_POTA_REF != null) { - $hashtags .= " #pota"; + $hashtags .= " #POTA ".$row->COL_POTA_REF; } if($row->COL_WWFF_REF != null) { - $hashtags .= " #wwff"; + $hashtags .= " #WWFF ".$row->COL_WWFF_REF; } if (!isset($distance)) { $twitter_string = urlencode("Just worked ".$row->COL_CALL." in ".ucwords(strtolower(($row->COL_COUNTRY)))." on ".$twitter_band_sat." using ".($row->COL_SUBMODE==null?$row->COL_MODE:$row->COL_SUBMODE)." ".$hashtags);