From 100e2cf1b2b9ce0ffc6012929e26f17160afe561 Mon Sep 17 00:00:00 2001 From: martinhaas <> Date: Wed, 8 Jun 2011 15:59:07 +0000 Subject: [PATCH] Google-weather with other address git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@911 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- webfrontend/pgm3/include/weather.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webfrontend/pgm3/include/weather.php b/webfrontend/pgm3/include/weather.php index bb2492069..79539dc28 100644 --- a/webfrontend/pgm3/include/weather.php +++ b/webfrontend/pgm3/include/weather.php @@ -69,7 +69,7 @@ $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 "\"".$WEATHER[0]['condition']."\"\n"; echo ""; for($i=1; $i<5; $i++) @@ -77,7 +77,7 @@ $WEATHER = website_WEATHER($weathercity, $weathercountry, $weatherlang); 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 "\"".$WEATHER[$i]['condition']."\"\n"; echo "
"; }