Poprawka pogody - adres do ikony w arkuszu XML od Google jest względny, podczas gdy skrypt zakładał bezwzględny (http://...).
| | |
| | | $icon = (string)$dane->weather->current_conditions->icon['data']; |
| | | if(!empty($icon)) { |
| | | if(!file_exists('./data/pogoda/'.basename($icon))) { |
| | | if(substr($icon, 0, 1) == '/') { |
| | | $img = 'http://www.google.com'.$img; |
| | | } |
| | | $img = @file_get_contents($icon); |
| | | if($img) { |
| | | file_put_contents('./data/pogoda/'.basename($icon), $img); |
| | |
| | | database::add($_GET['from'], 'pogoda', 'geo', array('lat' => (string)$data->lat, 'lon' => (string)$data->lng)); |
| | | } |
| | | } |
| | | ?> |
| | | ?> |