From f071ed46a041d94f0acb34579e3aff2f1cbe6f72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20P=C3=A4pper?= Date: Thu, 8 Mar 2018 09:48:36 +0100 Subject: [PATCH] Fixed bug https://github.com/firegento/firegento-magesetup/issues/275 --- .../FireGento/MageSetup/Block/Catalog/Product/Price.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php b/src/app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php index e3079e0a..e84cf7a9 100644 --- a/src/app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php +++ b/src/app/code/community/FireGento/MageSetup/Block/Catalog/Product/Price.php @@ -169,7 +169,7 @@ public function getFormattedTaxRate() public function isIncludingTax() { if (!$this->getData('is_including_tax')) { - $includesTax = Mage::helper('tax')->priceIncludesTax(); + $includesTax = Mage::helper('tax')->getConfig()->getPriceDisplayType(); $this->setData('is_including_tax', $includesTax); }