fix not working clearing of cache for files backend

This commit is contained in:
Ralf Becker 2015-01-29 13:55:40 +00:00
parent 9c35bfa3f3
commit bec89939c7

View File

@ -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);