whoops, forgot the space

This commit is contained in:
thecocohead 2024-07-10 23:27:26 -06:00
parent c4bd9c45d9
commit 94fd2d28f2

View File

@ -528,7 +528,7 @@ class Stations extends CI_Model {
$flag = "";
if (!empty($station_active)) {
$flag = strtolower($CI->dxccflag->getISO($station_active->station_dxcc));
$flag = '<span class="fi fi-' . $flag .'"></span>';
$flag = '<span class="fi fi-' . $flag .'"></span> ';
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); }