Jacek Kowalski
2012-08-29 befc460353c67201fd1322b5421edd3349ee730e
Poprawka błędnego użycia tablicy zwracanej w API yr.no w module pogoda.
1 files modified
4 ■■■■ changed files
modules/30_pogoda/handler.php 4 ●●●● patch | view | raw | blame | history
modules/30_pogoda/handler.php
@@ -77,10 +77,10 @@
        $weather = $api->getCurrentWeather();
        
        $out->a('<p><b>Teraz</b><br />'."\n"
            . '<img src="./data/pogoda/'.$icon.'.png" />'."\n"
            . '<img src="./data/pogoda/'.$icon.'.png" /><br />'."\n"
            . api_yrno_parse::$symbols[$icon].'<br />'."\n"
            . 'Temp.: '.htmlspecialchars($weather['temp']).'°C<br />'."\n"
            . 'Wiatr: '.htmlspecialchars($weather['wind_speed']).' km/h, '.api_yrno_parse::wind($weather['wind_direction']).'<br />'."\n"
            . 'Wiatr: '.htmlspecialchars($weather['wind_speed']).' km/h, '.api_yrno_parse::wind($weather['wind_dir']).'<br />'."\n"
            . 'Ciśnienie: '.htmlspecialchars($weather['pressure']).' hPa</p>'."\n\n");
        
        $when = time();