Skip to content

Commit

Permalink
ENGCOM-1999: [Forwardport] 2.3 develop pr port 15566 #15759
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Idolov authored Jun 19, 2018
2 parents 80bee46 + c9c3322 commit 8b87881
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/code/Magento/Store/Model/PathConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ public function shouldBeSecure($path)
*/
public function getDefaultPath()
{
return $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE);
$store = $this->storeManager->getStore();
$value = $this->scopeConfig->getValue('web/default/front', ScopeInterface::SCOPE_STORE, $store);
return $value;
}
}

0 comments on commit 8b87881

Please sign in to comment.