From 758926764d0f0a73d5102439cd6df3e7d247d5e7 Mon Sep 17 00:00:00 2001 From: martinhaas <> Date: Mon, 16 Nov 2009 14:21:34 +0000 Subject: [PATCH] fontcolor in weather.php git-svn-id: https://svn.fhem.de/fhem/trunk@477 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/webfrontend/pgm3/include/weather.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/fhem/webfrontend/pgm3/include/weather.php b/fhem/webfrontend/pgm3/include/weather.php index 3b9f18137..2c180e233 100644 --- a/fhem/webfrontend/pgm3/include/weather.php +++ b/fhem/webfrontend/pgm3/include/weather.php @@ -55,10 +55,10 @@ $WEATHER = website_WEATHER($weathercity, $weathercountry, $weatherlang); $city=str_replace(" ","
",$WEATHER['city']); echo ""; - echo ""; + echo ""; if ($weatherlang=='de') {$now='Jetzt';} else $now='Now'; - echo "
".$city."".$city."$now: "; + echo "$now: "; echo $WEATHER[0]['condition']."
\n"; $pos=strrpos($WEATHER[0]['luftfeuchtigkeit'],':'); @@ -67,18 +67,18 @@ $WEATHER = website_WEATHER($weathercity, $weathercountry, $weatherlang); echo "T/Hum: ".$WEATHER[0]['temperatur']."° / $hum
\n"; echo $WEATHER[0]['wind']."
\n"; echo "\"".$WEATHER[0]['condition']."\"\n"; - echo "
"; + echo ""; for($i=1; $i<5; $i++) { - echo "".$WEATHER[$i]['weekday']."
\n"; + echo "".$WEATHER[$i]['weekday']."
\n"; echo $WEATHER[$i]['condition']."
\n"; echo "min. ".$WEATHER[$i]['low']."° max. ".$WEATHER[$i]['high']."°
\n"; echo "\"".$WEATHER[$i]['condition']."\"\n"; - echo "
"; + echo ""; } - echo "
"; + echo ""; } ?>