Skip to content

Commit

Permalink
PR-720 Use correct return value in _prepareModifiedPrice
Browse files Browse the repository at this point in the history
  • Loading branch information
Alpha-Sys authored and Sieg committed Aug 12, 2019
1 parent 40b85da commit c80df08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/Application/Model/Article.php
Original file line number Diff line number Diff line change
Expand Up @@ -997,7 +997,7 @@ public function getMinPrice()
*/
protected function _prepareModifiedPrice($dPrice)
{
$this->_preparePrice($dPrice, $this->getArticleVat());
$dPrice = $this->_preparePrice($dPrice, $this->getArticleVat());

return $dPrice;
}
Expand Down

0 comments on commit c80df08

Please sign in to comment.