]> git.mxchange.org Git - friendica-addons.git/commitdiff
use friendica temppath settings for cache data
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 12 Jul 2015 13:39:49 +0000 (15:39 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 12 Jul 2015 13:39:49 +0000 (15:39 +0200)
curweather/curweather.php

index 056a5aa351436d26b7edb1e5a0d71a5eeaaacc4c..6db89428f4a0d2342b3bd086005e11ec009b18a8 100644 (file)
@@ -32,12 +32,13 @@ function curweather_uninstall() {
 //  The caching mechanism is taken from the cache example of the
 //  OpenWeatherMap-PHP-API library and a bit customized to allow admins to set
 //  the caching time depending on the plans they got from openweathermap.org
+//  and the usage of the friendica temppath
 
 class ExampleCache extends AbstractCache
 {
     private function urlToPath($url)
     {
-        $tmp = sys_get_temp_dir();
+       $tmp = get_config('system','temppath');
         $dir = $tmp . DIRECTORY_SEPARATOR . "OpenWeatherMapPHPAPI";
         if (!is_dir($dir)) {
             mkdir($dir);