Skip to content

Commit

Permalink
Merge pull request #21 from vgelani/2.3-develop-PR-port-15566
Browse files Browse the repository at this point in the history
[Forwardport] Fixxes magento#15565
  • Loading branch information
gelanivishal authored Jun 4, 2018
2 parents d595ea3 + 4c77dff commit 95a6454
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 95a6454

Please sign in to comment.