We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad0a37c commit 3dd3b13Copy full SHA for 3dd3b13
app/code/core/Mage/Core/Helper/EnvironmentConfigLoader.php
@@ -197,7 +197,9 @@ public function getEnv(): array
197
}, ARRAY_FILTER_USE_KEY);
198
$this->envStore = $env;
199
}
200
- if (!isset($this->envStore[static::ENV_FEATURE_ENABLED])) {
+ if (!isset($this->envStore[static::ENV_FEATURE_ENABLED]) ||
201
+ (bool) $this->envStore[static::ENV_FEATURE_ENABLED] === false
202
+ ) {
203
$this->envStore = [];
204
return $this->envStore;
205
0 commit comments