Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/CacheFile.php')
-rw-r--r--core/CacheFile.php9
1 files changed, 1 insertions, 8 deletions
diff --git a/core/CacheFile.php b/core/CacheFile.php
index 6a3f95cf9e..8d877abddc 100644
--- a/core/CacheFile.php
+++ b/core/CacheFile.php
@@ -28,6 +28,7 @@ class Piwik_CacheFile
function __construct($directory)
{
$this->cachePath = PIWIK_USER_PATH . '/tmp/cache/' . $directory . '/';
+// echo $this->cachePath;exit;
}
/**
@@ -111,12 +112,4 @@ class Piwik_CacheFile
}
return false;
}
-
- /**
- * A function to delete all cache entries in the directory
- */
- function deleteAll()
- {
- Piwik::unlinkRecursive($this->cachePath, $deleteRootToo = false);
- }
}