Index: t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php =================================================================== --- t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php (revision 99) +++ t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php (working copy) @@ -150,7 +150,7 @@ 'content', $this->cacheTable, 'identifier = ' . $GLOBALS['TYPO3_DB']->fullQuoteStr($entryIdentifier, $this->cacheTable) . ' ' - . 'AND (crdate + lifetime >= ' . $GLOBALS['EXEC_TIME'] . ' OR lifetime = 0)' + . 'AND (' . $GLOBALS['EXEC_TIME'] . ' <= crdate + lifetime OR lifetime = 0)' ); if (count($cacheEntries) == 1) {