Skip to content

Commit

Permalink
[BUGFIX] Make Flux cache configuration accessible in install tool
Browse files Browse the repository at this point in the history
Required in order for the install tool to create the required tables.
  • Loading branch information
NamelessCoder committed Jan 30, 2016
1 parent 4966499 commit e68a91c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions ext_localconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
)
);

if (!is_array($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['flux'])) {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['flux'] = array(
'groups' => array('system')
);
}

\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin('FluidTYPO3.Flux', 'API', array('Flux' => 'renderChildContent'), array());

\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addTypoScript($_EXTKEY, 'setup', '
Expand Down Expand Up @@ -98,3 +92,9 @@
)
);
}

if (!is_array($GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['flux'])) {
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['flux'] = array(
'groups' => array('system')
);
}

0 comments on commit e68a91c

Please sign in to comment.