Bug #20559 ยป 0011257.patch
t3lib/cache/backend/class.t3lib_cache_backend_dbbackend.php (Arbeitskopie) | ||
---|---|---|
public function collectGarbage() {
|
||
$GLOBALS['TYPO3_DB']->exec_DELETEquery(
|
||
$this->cacheTable,
|
||
'crdate + lifetime < ' . time()
|
||
'crdate + lifetime < ' . time() . ' AND lifetime > 0'
|
||
);
|
||
}
|
||