Skip to content

Commit

Permalink
A manual update.
Browse files Browse the repository at this point in the history
Signed-off-by:Ivan Tcholakov <[email protected]>
  • Loading branch information
ivantcholakov committed Dec 30, 2018
1 parent 4b1c1c9 commit b49fe0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/common/libraries/Cache/drivers/Cache_file.php
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ protected function _get($id)

if ($data['ttl'] > 0 && time() > $data['time'] + $data['ttl'])
{
unlink($this->_cache_path.$id);
file_exists($this->_cache_path.$id) && unlink($this->_cache_path.$id);
return FALSE;
}

Expand Down

0 comments on commit b49fe0a

Please sign in to comment.