Skip to content
Snippets Groups Projects
Commit 3f358968 authored by Christian Kuhn's avatar Christian Kuhn Committed by Markus Klein
Browse files

[BUGFIX] Remove obsolete useCachingFramework from LocalConfiguration

TYPO3_CONF_VARS/SYS/useCachingFramework is obsolete since 4.6 but
was forgotten to be removed from LocalConfiguration for 6.2. The
patch add this option to the SilentConfigurationUpgradeService to
let the install tool remove it if still set.

Resolves: #64872
Releases: master
Change-Id: I0e34cef906e02a37660f2ae078ce0f075e448c90
Reviewed-on: http://review.typo3.org/36679


Reviewed-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Tested-by: default avatarTymoteusz Motylewski <t.motylewski@gmail.com>
Reviewed-by: default avatarMarkus Klein <klein.t3@reelworx.at>
Tested-by: default avatarMarkus Klein <klein.t3@reelworx.at>
parent 3d663def
Branches
Tags
No related merge requests found
......@@ -22,7 +22,6 @@ configured, it can then cache queries for much longer, thus allowing
DBAL to be much more efficient. Caching may be configured within
``localconf.php``::
$GLOBALS['TYPO3_CONF_VARS']['SYS']['useCachingFramework'] = 1;
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['dbal'] = array(
'backend' => 'TYPO3\\CMS\\Core\\Cache\\Backend\\MemcachedBackend',
'options' => array(
......
......@@ -76,6 +76,8 @@ class SilentConfigurationUpgradeService {
'GFX/enable_typo3temp_db_tracking',
// #48542
'GFX/TTFdpi',
// #64872
'SYS/useCachingFramework',
);
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment