Jacek Kowalski
2012-11-27 4c7016fb3e2dd55de4389872ba5c6c65bbf5a582
modules/30_pogoda/api_geonames.php
@@ -15,7 +15,7 @@
         }
         
         libxml_use_internal_errors();
         $data = simplexml_load_string();
         $data = simplexml_load_string($data);
         libxml_clear_errors();
         
         if(!$data) {
@@ -23,10 +23,10 @@
            return FALSE;
         }
         
         // Trzymaj w cache przez około 278 dni
         $download->cacheFor(1000000);
         // Trzymaj w cache przez około 116 dni
         $download->cacheFor(10000000);
         
         if($data->geoname[0]->getName() != 'geoname'
         if((int)$data->totalResultsCount == 0 || $data->geoname->getName() != 'geoname' || $data->geoname[0]->getName() != 'geoname'
            || $data->geoname[0]->name->getName() != 'name'
            || $data->geoname[0]->countryName->getName() != 'countryName'
            || $data->geoname[0]->lat->getName() != 'lat'
@@ -34,7 +34,7 @@
            return NULL;
         }
         
         $data = (array)$this->geoname[0];
         $data = (array)$data->geoname[0];
         foreach($data as &$value) {
            $value = trim($value);
         }