Skip to content

Commit a551025

Browse files
committed
Fixes _toHtml method of Checkout/Block/Cart/Link class
1 parent 4858f04 commit a551025

File tree

1 file changed

+1
-1
lines changed
  • app/code/Magento/Checkout/Block/Cart

1 file changed

+1
-1
lines changed

app/code/Magento/Checkout/Block/Cart/Link.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function getHref()
6565
*/
6666
protected function _toHtml()
6767
{
68-
if ($this->_moduleManager->isOutputEnabled('Magento_Checkout')) {
68+
if (!$this->_moduleManager->isOutputEnabled('Magento_Checkout')) {
6969
return '';
7070
}
7171
return parent::_toHtml();

0 commit comments

Comments
 (0)