Hourly cache for the curweather addon

pull/301/head
Michael Vogel 2015-09-13 08:30:40 +02:00
parent d9a44c9fe7
commit 2f2696c336
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ function getWeather( $loc, $units='metric', $lang='en', $appid='', $cachetime=0)
'icon' => (string)$res->weather['icon']
);
set_pconfig(local_user(), 'curweather', 'last', $now->getTimestamp());
Cache::set('curweather'.md5($url), serialize($r));
Cache::set('curweather'.md5($url), serialize($r), CACHE_HOUR);
return $r;
}