Skip to content

Commit

Permalink
[BUGFIX] Change cache configuration to only override the minimum
Browse files Browse the repository at this point in the history
Resolves fabarea#19
Resolves fabarea#20
  • Loading branch information
sypets authored and fabarea committed May 30, 2017
1 parent 9dcea2a commit 180533c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@
$pluginType === 'USER_INT' ? ['Feed' => 'show'] : []
);

$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['rssdisplay'] = [
'frontend' => 'TYPO3\CMS\Core\Cache\Frontend\StringFrontend',
// 'options' => array(),
'groups' => ['all', 'rssdisplay']
];
// cache configuration, see
// https://docs.typo3.org/typo3cms/CoreApiReference/ApiOverview/CachingFramework/Configuration/Index.html#cache-configurations
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['rssdisplay']['frontend'] = \TYPO3\CMS\Core\Cache\Frontend\StringFrontend::class;
$TYPO3_CONF_VARS['SYS']['caching']['cacheConfigurations']['rssdisplay']['groups'] = ['all', 'rssdisplay'];


# Install PSR-0-compatible class autoloader for SimplePie Library in Resources/PHP/SimplePie
spl_autoload_register(function ($class) {
Expand Down

0 comments on commit 180533c

Please sign in to comment.