From ed5768c4a316172e944ba0ea9fbd8ee15973ed1b Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 2 May 2013 21:59:20 -0700 Subject: [PATCH] optimise cachefile logic - still not sure why the cachefile profiling was getting triggered on a site with no cachefile configured --- boot.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/boot.php b/boot.php index 5e50fa17a9..cf4a7abfb6 100644 --- a/boot.php +++ b/boot.php @@ -2099,10 +2099,7 @@ function random_digits($digits) { function get_cachefile($file, $writemode = true) { $cache = get_config("system","itemcache"); - if ($cache == "") - return(""); - - if (!is_dir($cache)) + if ((! $cache) || (! is_dir($cache))) return(""); $subfolder = $cache."/".substr($file, 0, 2);