diff --git a/curweather/curweather.php b/curweather/curweather.php index c4cf3ab4..db244c7d 100644 --- a/curweather/curweather.php +++ b/curweather/curweather.php @@ -92,7 +92,7 @@ function getWeather($loc, $units = 'metric', $lang = 'en', $appid = '', $cacheti ]; PConfig::set(local_user(), 'curweather', 'last', $now->getTimestamp()); - Cache::set('curweather'.md5($url), serialize($r), CACHE_HOUR); + Cache::set('curweather'.md5($url), serialize($r), Cache::HOUR); return $r; } diff --git a/openstreetmap/openstreetmap.php b/openstreetmap/openstreetmap.php index 0420591e..a1cdd3a1 100644 --- a/openstreetmap/openstreetmap.php +++ b/openstreetmap/openstreetmap.php @@ -132,7 +132,7 @@ function openstreetmap_get_coordinates($a, &$b) $curlResult = Network::curl($nomserver . $args); if ($curlResult->isSuccess()) { $j = json_decode($curlResult->getBody(), true); - Cache::set($cachekey, $j, CACHE_MONTH); + Cache::set($cachekey, $j, Cache::MONTH); } }