From: Robin Appelman Date: Tue, 5 Jun 2012 17:33:15 +0000 (+0200) Subject: return null when a cache variable is not set X-Git-Tag: v4.5.0beta1~74^2~424^2~21 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=10eef49c3cf4636416a29427999d1a65a0aa1f0b;p=nextcloud-server.git return null when a cache variable is not set --- diff --git a/lib/cache/file.php b/lib/cache/file.php index 02aad5187ee..a724b9682a8 100644 --- a/lib/cache/file.php +++ b/lib/cache/file.php @@ -7,7 +7,7 @@ */ -class OC_Cache_File { +class OC_Cache_File extends OC_Cache { protected function getStorage() { if(OC_User::isLoggedIn()){ $subdir = 'cache'; @@ -28,11 +28,11 @@ class OC_Cache_File { $mtime = $storage->filemtime($key); if ($mtime < time()) { $storage->unlink($key); - return false; + return null; } return $storage->file_get_contents($key); } - return false; + return null; } public function set($key, $value, $ttl) {