From 8858a2a3079aaf3722e667ecaa7d66f23ea5f13e Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Thu, 29 Jan 2015 13:56:25 +0000 Subject: [PATCH] fix not working clearing of cache for files backend --- phpgwapi/inc/class.egw_cache_files.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.egw_cache_files.inc.php b/phpgwapi/inc/class.egw_cache_files.inc.php index abb0f9650e..ff86e53a35 100644 --- a/phpgwapi/inc/class.egw_cache_files.inc.php +++ b/phpgwapi/inc/class.egw_cache_files.inc.php @@ -152,7 +152,7 @@ class egw_cache_files extends egw_cache_provider_check implements egw_cache_prov } else { - if (!unlink($path.'/'.$file)) return false; + if (!unlink($file)) return false; } } return rmdir($path);