Actions
Bug #22072
closedtypo in BE cache init section
Start date:
2010-02-06
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.3
PHP Version:
5.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
In typo3/init.php there are lines:
if (TYPO3_UseCachingFramework) {
$typo3CacheManager = t3lib_div::makeInstance('t3lib_cache_Manager');
$typo3CacheFactory = t3lib_div::makeInstance('t3lib_cache_Factory');
$typo3CacheFactory->setCacheManager($typo3CacheManager);
t3lib_cache::initPageCache();
t3lib_cache::initPageSectionCache();
t3lib_cache::initContentHashCache();
unset($cacheFactoryClass);
}
note line unset($cacheFactoryClass);
but no $cacheFactoryClass var in the code before, probably should be unset($typo3CacheFactory) instead
(issue imported from #M13448)
Files
Updated by Christian Kuhn almost 15 years ago
Thanks for the report!
Committed to:
- trunk rev. 6868
- 4-3 rev. 6869
Updated by Christian Kuhn almost 15 years ago
Committed follow-up:
- trunk rev. 6872
- 4.3 rev. 6873
Actions