commit | 4dac6ebaf363c60b2c1413db11f0dcd862177fa1 | [log] [tgz] |
---|---|---|
author | Andrey Andreev <narf@devilix.net> | Mon Aug 31 17:52:27 2015 +0300 |
committer | Andrey Andreev <narf@devilix.net> | Mon Aug 31 17:52:27 2015 +0300 |
tree | fb5dee4e147ac196caa17226de25475bbcdfb679 | |
parent | 348a2d445b9d059aab4f5113a380f05eb2cd92d9 [diff] [blame] |
[ci skip] Fix #4091
diff --git a/system/libraries/Cache/drivers/Cache_file.php b/system/libraries/Cache/drivers/Cache_file.php index 68bc1ec..c046f3b 100644 --- a/system/libraries/Cache/drivers/Cache_file.php +++ b/system/libraries/Cache/drivers/Cache_file.php
@@ -267,7 +267,7 @@ */ protected function _get($id) { - if ( ! file_exists($this->_cache_path.$id)) + if ( ! is_file($this->_cache_path.$id)) { return FALSE; }