Jacek Kowalski
2012-08-29 dd796a2ceffd91b40b9abf0130130342b9ed3c65
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,8 +23,8 @@
            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'
            || $data->geoname[0]->name->getName() != 'name'
@@ -34,7 +34,7 @@
            return NULL;
         }
         
         $data = (array)$this->geoname[0];
         $data = (array)$data->geoname[0];
         foreach($data as &$value) {
            $value = trim($value);
         }