diff options
-rw-r--r-- | inc/cache.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/cache.php b/inc/cache.php index ff78e37ae..e598baa47 100644 --- a/inc/cache.php +++ b/inc/cache.php @@ -69,7 +69,7 @@ class cache { if (!empty($this->depends['files'])) { foreach ($this->depends['files'] as $file) { - if ($this->_time < @filemtime($file)) return false; // cache older than files it depends on? + if ($this->_time <= @filemtime($file)) return false; // cache older than files it depends on? } } |