]> git.mxchange.org Git - friendica.git/commitdiff
Again, static *OR* object-referencing calls? Blue or red pill?
authorRoland Häder <roland@mxchange.org>
Thu, 15 Dec 2016 09:05:18 +0000 (10:05 +0100)
committerRoland Häder <roland@mxchange.org>
Thu, 15 Dec 2016 09:05:18 +0000 (10:05 +0100)
Signed-off-by: Roland Häder <roland@mxchange.org>
include/cron.php
mod/proxy.php

index 008260592fd1d18119227a0e6381fb30d9979f6c..d7771c08b8dee6b2cca2a0a50ad1dd9c52c095cf 100644 (file)
@@ -362,14 +362,14 @@ function cron_clear_cache(&$a) {
        clear_cache();
 
        // clear cache for photos
-       clear_cache(App::get_basepath(), App::get_basepath()."/photo");
+       clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
 
        // clear smarty cache
-       clear_cache(App::get_basepath()."/view/smarty3/compiled", App::get_basepath()."/view/smarty3/compiled");
+       clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
 
        // clear cache for image proxy
        if (!get_config("system", "proxy_disabled")) {
-               clear_cache(App::get_basepath(), App::get_basepath()."/proxy");
+               clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
 
                $cachetime = get_config('system','proxy_cache_time');
                if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
index 1d27d703846c6f7b56fe2ffe1dee317f57452a28..612dc910a03978c3212658ba9037f1e4248500a2 100644 (file)
@@ -267,7 +267,7 @@ function proxy_url($url, $writemode = false, $size = '') {
        $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
 
        // Creating a sub directory to reduce the amount of files in the cache directory
-       $basepath = App::get_basepath() . '/proxy';
+       $basepath = $a->get_basepath() . '/proxy';
 
        $shortpath = hash('md5', $url);
        $longpath = substr($shortpath, 0, 2);