Skip to content

Commit

Permalink
MAGETWO-36653: [GitHub] Unable to open home page after successful ins…
Browse files Browse the repository at this point in the history
…tallation #1212

- changed condition checking in Store model
  • Loading branch information
eddielau committed Apr 27, 2015
1 parent 385f475 commit 4be5f20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Store/Model/Store.php
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ public function isCurrentlySecure()
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);

if (!$secureBaseUrl) {
if (!$secureBaseUrl || !$this->_config->getValue(self::XML_PATH_SECURE_IN_FRONTEND)) {
return false;
}

Expand Down

0 comments on commit 4be5f20

Please sign in to comment.