changed whitespace to non-breaking space

This commit is contained in:
Barisi
2017-03-04 12:59:14 +00:00
parent 04a9987cb9
commit 5f4578738f

View File

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