Return NOT_FOUND in shared cache

This commit is contained in:
Michael Gapczynski 2013-01-10 22:29:47 -05:00
parent 4835525c46
commit 36cac7f924
1 changed files with 1 additions and 1 deletions

View File

@ -196,7 +196,7 @@ class Shared_Cache extends Cache {
if ($cache = $this->getSourceCache($file)) {
return $cache->getStatus($this->files[$file]);
}
return false;
return self::NOT_FOUND;
}
/**