Bug #51588 ยป local_history.patch
devbox/typo3_src-6-patched/typo3/sysext/core/Classes/DataHandling/DataHandler.php (revision ) | ||
---|---|---|
$pageCache = $GLOBALS['typo3CacheManager']->getCache('cache_pages');
|
||
/** @var $pageSectionCache \TYPO3\CMS\Core\Cache\Frontend\AbstractFrontend */
|
||
$pageSectionCache = $GLOBALS['typo3CacheManager']->getCache('cache_pagesection');
|
||
/** @var $hashCache \TYPO3\CMS\Core\Cache\Frontend\AbstractFrontend */
|
||
$hashCache = $GLOBALS['typo3CacheManager']->getCache('cache_hash');
|
||
foreach ($tagsToFlush as $tag) {
|
||
$pageCache->flushByTag($tag);
|
||
$pageSectionCache->flushByTag($tag);
|
||
$hashCache->flushByTag($tag);
|
||
}
|
||
}
|
||
// Call post processing function for clear-cache:
|