Move Global Functions - Part 3

- Replaced every CACHE_ definition
This commit is contained in:
Philipp Holzer 2018-10-20 18:22:13 +02:00
parent a8282d143e
commit e67d810ecd
No known key found for this signature in database
GPG Key ID: 517BE60E2CE5C8A5
2 changed files with 2 additions and 2 deletions

View File

@ -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;
}

View File

@ -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);
}
}