Skip to content

Commit

Permalink
[BUGFIX] Fix incorrect extension configuration reference
Browse files Browse the repository at this point in the history
References: #1791
  • Loading branch information
NamelessCoder committed Jun 3, 2020
1 parent 12f79c2 commit 3f16340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Classes/Utility/ExtensionConfigurationUtility.php
Expand Up @@ -44,6 +44,6 @@ public static function getOptions(): array

public static function getOption(string $optionName)
{
return $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['flux'][$optionName] ?? static::$defaults[$optionName] ?? null;
return $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['flux']['setup'][$optionName] ?? static::$defaults[$optionName] ?? null;
}
}

0 comments on commit 3f16340

Please sign in to comment.