Bug #21355 ยป 15389_01.diff
t3lib/class.t3lib_cache.php | ||
---|---|---|
try {
|
||
$GLOBALS['typo3CacheFactory']->create(
|
||
'cache_pages',
|
||
't3lib_cache_frontend_VariableFrontend',
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pages']['frontend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pages']['backend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pages']['options']
|
||
);
|
||
... | ... | |
try {
|
||
$GLOBALS['typo3CacheFactory']->create(
|
||
'cache_pagesection',
|
||
't3lib_cache_frontend_VariableFrontend',
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pagesection']['frontend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pagesection']['backend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pagesection']['options']
|
||
);
|
||
... | ... | |
try {
|
||
$GLOBALS['typo3CacheFactory']->create(
|
||
'cache_hash',
|
||
't3lib_cache_frontend_VariableFrontend',
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_hash']['frontend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_hash']['backend'],
|
||
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_hash']['options']
|
||
);
|
t3lib/config_default.php | ||
---|---|---|
),
|
||
'cacheConfigurations' => array(
|
||
'cache_hash' => array(
|
||
'frontend' => 't3lib_cache_frontend_VariableFrontend',
|
||
'backend' => 't3lib_cache_backend_DbBackend',
|
||
'options' => array(
|
||
'cacheTable' => 'cachingframework_cache_hash',
|
||
... | ... | |
)
|
||
),
|
||
'cache_pages' => array(
|
||
'frontend' => 't3lib_cache_frontend_VariableFrontend',
|
||
'backend' => 't3lib_cache_backend_DbBackend',
|
||
'options' => array(
|
||
'cacheTable' => 'cachingframework_cache_pages',
|
||
... | ... | |
)
|
||
),
|
||
'cache_pagesection' => array(
|
||
'frontend' => 't3lib_cache_frontend_VariableFrontend',
|
||
'backend' => 't3lib_cache_backend_DbBackend',
|
||
'options' => array(
|
||
'cacheTable' => 'cachingframework_cache_pagesection',
|