]> git.mxchange.org Git - friendica.git/blobdiff - include/cron.php
Opps, this has vanished by accident, thanks to @annando
[friendica.git] / include / cron.php
index d7771c08b8dee6b2cca2a0a50ad1dd9c52c095cf..008260592fd1d18119227a0e6381fb30d9979f6c 100644 (file)
@@ -362,14 +362,14 @@ function cron_clear_cache(&$a) {
        clear_cache();
 
        // clear cache for photos
-       clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
+       clear_cache(App::get_basepath(), App::get_basepath()."/photo");
 
        // clear smarty cache
-       clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
+       clear_cache(App::get_basepath()."/view/smarty3/compiled", App::get_basepath()."/view/smarty3/compiled");
 
        // clear cache for image proxy
        if (!get_config("system", "proxy_disabled")) {
-               clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
+               clear_cache(App::get_basepath(), App::get_basepath()."/proxy");
 
                $cachetime = get_config('system','proxy_cache_time');
                if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;