Added space between temperature reading and unit

This commit is contained in:
Barisi
2017-03-03 23:28:58 +00:00
parent 41cadc5b48
commit 04a9987cb9

View File

@@ -306,15 +306,15 @@
echo "\"></i> Temp:&nbsp;";
if($temperatureunit === "F")
{
echo round($fahrenheit,1) . "&deg;F";
echo round($fahrenheit,1) . " &deg;F";
}
elseif($temperatureunit === "K")
{
echo round($kelvin,1) . "K";
echo round($kelvin,1) . " K";
}
else
{
echo round($celsius,1) . "&deg;C";
echo round($celsius,1) . " &deg;C";
}
echo "</a>";
}