Skip to content

Commit

Permalink
Bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gilbertsoft committed Dec 10, 2017
1 parent 0fa59bf commit 242c012
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Classes/Extension/Configurator.php
Original file line number Diff line number Diff line change
Expand Up @@ -237,23 +237,23 @@ public static function additionalConfiguration($extensionKey)
self::handleContextConfiguration($extConf);
}

if (($extConf['feConfigEnable'] == 1) && isFrontend()) {
if (($extConf['feConfigEnable'] == 1) && self::isFrontend()) {
self::handleFeConfiguration($extConf);
}

if (($extConf['beConfigEnable'] == 1) && isBackend()) {
if (($extConf['beConfigEnable'] == 1) && self::isBackend()) {
self::handleBeConfiguration($extConf);
}

if (($extConf['cliConfigEnable'] == 1) && isCli()) {
if (($extConf['cliConfigEnable'] == 1) && self::isCli()) {
self::handleCliConfiguration($extConf);
}

if (($extConf['ajaxConfigEnable'] == 1) && isAjax()) {
if (($extConf['ajaxConfigEnable'] == 1) && self::isAjax()) {
self::handleAjaxConfiguration($extConf);
}

if (($extConf['installConfigEnable'] == 1) && isInstall()) {
if (($extConf['installConfigEnable'] == 1) && self::isInstall()) {
self::handleInstallConfiguration($extConf);
}
}
Expand Down

0 comments on commit 242c012

Please sign in to comment.