Bug #20845 » bug_11663_part3.diff
typo3/sysext/cms/tslib/class.tslib_fe.php (Arbeitskopie) | ||
---|---|---|
$temp_content = str_pad($temp_content, $padSize, "\n") . $padSuffix;
|
||
}
|
||
// Skip the next part which was useful only until locking was implemented. Skipping it saves one query at least...
|
||
/*
|
||
if (!$this->headerNoCache() && $cachedRow = $this->getFromCache_queryRow()) {
|
||
// We are here because between checking for cached content earlier and now some other HTTP-process managed to store something in cache AND it was not due to a shift-reload by-pass.
|
||
// This is either the "Page is being generated" screen or it can be the final result.
|
||
... | ... | |
$this->tempContent = TRUE; // This flag shows that temporary content is put in the cache
|
||
$this->setPageCacheContent($temp_content, $this->config, $GLOBALS['EXEC_TIME']+$seconds);
|
||
}
|
||
*/
|
||
$this->tempContent = TRUE; // This flag shows that temporary content is put in the cache
|
||
$this->setPageCacheContent($temp_content, $this->config, $GLOBALS['EXEC_TIME']+$seconds);
|
||
}
|
||
}
|
||