From db991b0eb06e3f8444286124557675263f4114b8 Mon Sep 17 00:00:00 2001 From: Fabian Kunkler Date: Thu, 1 Aug 2019 17:12:28 +0200 Subject: [PATCH] bugfix for https://bugs.oxid-esales.com/view.php?id=6811 Use correct return value --- source/Application/Model/Article.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Application/Model/Article.php b/source/Application/Model/Article.php index 78a59577f2..67eeb8ce2f 100644 --- a/source/Application/Model/Article.php +++ b/source/Application/Model/Article.php @@ -997,7 +997,7 @@ public function getMinPrice() */ protected function _prepareModifiedPrice($dPrice) { - $this->_preparePrice($dPrice, $this->getArticleVat()); + $dPrice = $this->_preparePrice($dPrice, $this->getArticleVat()); return $dPrice; }