Fix CBR Export

This commit is contained in:
int2001
2025-08-21 05:14:02 +00:00
parent df07034765
commit 5f6c4546b8

View File

@@ -147,7 +147,7 @@ class Cabrilloformat {
} }
if ($grid_export == true) { if ($grid_export == true) {
$returnstring .= substr($qso->station_gridsquare, 0, 4) ?? '' ." "; $returnstring .= (substr($qso->station_gridsquare, 0, 4) ?? '') ." ";
} }
if ($qso->COL_STX_STRING != "") { if ($qso->COL_STX_STRING != "") {
@@ -161,7 +161,7 @@ class Cabrilloformat {
} }
if ($grid_export == true) { if ($grid_export == true) {
$returnstring .= substr($qso->COL_GRIDSQUARE, 0, 4) ?? '' ." "; $returnstring .= (substr($qso->COL_GRIDSQUARE, 0, 4) ?? '') ." ";
} }
if ($qso->COL_SRX_STRING != "") { if ($qso->COL_SRX_STRING != "") {