Update SatPC32 Sat Names to correct idents

This commit is contained in:
Peter Goodhall 2017-03-13 21:27:21 +00:00
parent 23bb1e6eb5
commit 6a146f8235

View File

@ -132,7 +132,13 @@
{
foreach ($query->result() as $row)
{
echo strtoupper($row->sat_name);
if($row->sat_name == "AO-07") {
echo "AO-7";
} elseif ($row->sat_name == "LILACSAT") {
echo "CAS-3H";
} else {
echo strtoupper($row->sat_name);
}
}
}
}