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 e1e7b14 commit e4c752bCopy full SHA for e4c752b
app/code/Magento/Config/App/Config/Type/System.php
@@ -156,7 +156,10 @@ private function getWithParts($path)
156
157
if ($scopeType === ScopeInterface::SCOPE_DEFAULT) {
158
if (!isset($this->data[$scopeType])) {
159
- $this->data = array_replace_recursive($this->data, $scopeData = $this->loadDefaultScopeData($scopeType));
+ $this->data = array_replace_recursive(
160
+ $this->data,
161
+ $scopeData = $this->loadDefaultScopeData($scopeType)
162
+ );
163
$scopeData = $this->postProcessor->process($scopeData);
164
$this->data = array_replace_recursive($this->data, $scopeData);
165
}
0 commit comments