diff --git a/application/controllers/Lotw.php b/application/controllers/Lotw.php index 302278e56..257f2456a 100644 --- a/application/controllers/Lotw.php +++ b/application/controllers/Lotw.php @@ -243,7 +243,7 @@ class Lotw extends CI_Controller { // Nothing to upload if(empty($data['qsos']->result())){ if ($this->user_model->authorize(2)) { // Only be verbose if we have a session - echo $station_profile->station_callsign." (".$station_profile->station_profile_name."): No QSOs to upload.
"; + echo str_replace("0", "Ø", $station_profile->station_callsign)." (".$station_profile->station_profile_name."): No QSOs to upload.
"; } continue; } @@ -541,6 +541,9 @@ class Lotw extends CI_Controller { if($status[0] == "Found") { $qso_id4lotw=$status[1]; + + $call = str_replace("0", "Ø", $record['call']); + if (isset($record['state'])) { $state = $record['state']; } else { @@ -603,7 +606,7 @@ class Lotw extends CI_Controller { $table .= ""; $table .= "".$record['station_callsign'].""; $table .= "".$time_on.""; - $table .= "".$record['call'].""; + $table .= "".$call.""; $table .= "".$record['mode'].""; $table .= "".$record['qsl_rcvd'].""; $table .= "".$qsl_date."";