From 94fd2d28f274aa169beee4d4b73dd814779b0d28 Mon Sep 17 00:00:00 2001 From: thecocohead Date: Wed, 10 Jul 2024 23:27:26 -0600 Subject: [PATCH] whoops, forgot the space --- application/models/Stations.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Stations.php b/application/models/Stations.php index f99269fb..39c3d7e2 100644 --- a/application/models/Stations.php +++ b/application/models/Stations.php @@ -528,7 +528,7 @@ class Stations extends CI_Model { $flag = ""; if (!empty($station_active)) { $flag = strtolower($CI->dxccflag->getISO($station_active->station_dxcc)); - $flag = ''; + $flag = ' '; list($station_lat, $station_lng) = $this->qra->qra2latlong($station_active->station_gridsquare); } if (($station_lat!=0)&&($station_lng!=0)) { $_jsonresult = array('lat'=>$station_lat,'lng'=>$station_lng,'html'=>$station_active->station_gridsquare,'label'=>$station_active->station_profile_name,'icon'=>'stationIcon','flag'=>$flag); }