diff --git a/scripts/pi-hole/php/header.php b/scripts/pi-hole/php/header.php index 776e2ac2..e6f4d3c3 100644 --- a/scripts/pi-hole/php/header.php +++ b/scripts/pi-hole/php/header.php @@ -306,15 +306,15 @@ echo "\"> Temp: "; if($temperatureunit === "F") { - echo round($fahrenheit,1) . " °F"; + echo round($fahrenheit,1) . " °F"; } elseif($temperatureunit === "K") { - echo round($kelvin,1) . " K"; + echo round($kelvin,1) . " K"; } else { - echo round($celsius,1) . " °C"; + echo round($celsius,1) . " °C"; } echo ""; }