Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
removing delete from cache write refs #5206
git-svn-id: https://svn.cakephp.org/repo/branches/1.2.x.x@8195 3807eeeb-6ff5-0310-8944-8be069107fe0
  • Loading branch information
gwoo committed Jun 16, 2009
1 parent d335fef commit 9caae67
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cake/libs/cache/file.php
Expand Up @@ -168,7 +168,6 @@ function read($key) {

if ($cachetime !== false && ($cachetime < $time || ($time + $this->settings['duration']) < $cachetime)) {
$this->__File->close();
$this->__File->delete();
return false;
}
$data = $this->__File->read(true);
Expand Down

0 comments on commit 9caae67

Please sign in to comment.