summaryrefslogtreecommitdiffstats
path: root/system/libraries/Cache/drivers
diff options
context:
space:
mode:
authorPaweł Kłopotek-Główczewski <pawelkg@pawelkg.com>2018-12-12 21:03:52 +0100
committerPaweł Kłopotek-Główczewski <pawelkg@pawelkg.com>2018-12-12 21:03:52 +0100
commiteb8f21e8bf051c1a5cba0a08a07fef5d10132750 (patch)
treeb9bc33588c0ad3bc0fadd1e7b13deba4b45a75d0 /system/libraries/Cache/drivers
parentfb464f184cc06df7ecaad19ba73b9e73110c2b17 (diff)
Fix tabs
Diffstat (limited to 'system/libraries/Cache/drivers')
-rw-r--r--system/libraries/Cache/drivers/Cache_file.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/system/libraries/Cache/drivers/Cache_file.php b/system/libraries/Cache/drivers/Cache_file.php
index cc6018787..c93064cd8 100644
--- a/system/libraries/Cache/drivers/Cache_file.php
+++ b/system/libraries/Cache/drivers/Cache_file.php
@@ -276,7 +276,7 @@ class CI_Cache_file extends CI_Driver {
if ($data['ttl'] > 0 && time() > $data['time'] + $data['ttl'])
{
- file_exists($this->_cache_path.$id) && unlink($this->_cache_path.$id);
+ file_exists($this->_cache_path.$id) && unlink($this->_cache_path.$id);
return FALSE;
}