Browse Source

Force File cache driver to return null when items are expired.

Taylor Otwell 13 years ago
parent
commit
a29e76f27b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      system/cache/driver/file.php

+ 3 - 1
system/cache/driver/file.php

@@ -43,7 +43,9 @@ class File implements \System\Cache\Driver {
 
 		if (time() >= substr($cache, 0, 10))
 		{
-			return $this->forget($key);
+			$this->forget($key);
+
+			return null;
 		}
 
 		return $this->items[$key] = unserialize(substr($cache, 10));