mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-05 00:59:35 +00:00
[FileCache] Build path using function instead of constant
This commit is contained in:
parent
9ac678aac5
commit
5fdb3b2fd9
@ -36,7 +36,7 @@ class FileCache extends CacheAbstract {
|
||||
|
||||
public function purgeCache(){
|
||||
$cacheTimeLimit = time() - 86400; // 86400 -> 24h
|
||||
$cachePath = 'cache';
|
||||
$cachePath = $this->getCachePath();
|
||||
if(file_exists($cachePath)){
|
||||
$cacheIterator = new RecursiveIteratorIterator(
|
||||
new RecursiveDirectoryIterator($cachePath),
|
||||
|
Loading…
Reference in New Issue
Block a user