Skip to content

Commit

Permalink
[BUGIFX] Merge settings declared before by other extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
jmverges committed Nov 19, 2015
1 parent 805c35c commit d34d2aa
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Classes/Controller/AbstractFluxController.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,11 @@ protected function initializeSettings() {
$extensionKey = $this->provider->getExtensionKey($row);
$extensionName = ExtensionNamingUtility::getExtensionName($extensionKey);
$pluginName = $this->request->getPluginName();
$this->settings = (array) $this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS, $extensionName, $pluginName
$this->settings = RecursiveArrayUtility::merge(
(array) $this->configurationManager->getConfiguration(
ConfigurationManagerInterface::CONFIGURATION_TYPE_SETTINGS, $extensionName, $pluginName
),
$this->settings
);
$this->data = $this->provider->getFlexFormValues($row);
$this->setup = $this->provider->getTemplatePaths($row);
Expand Down

0 comments on commit d34d2aa

Please sign in to comment.